123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Created by PhpStorm.
- * User: NODELOG
- * Date: 2016/12/15
- * Time: 下午2:20
- */
- /**
- * @var \yii\web\View $this
- * @var \common\modules\book\models\BookChapter $model
- */
- use yii\helpers\Html;
- use yii\helpers\HtmlPurifier;
- use yii\helpers\Markdown;
- $this->title = $model->chapter_name;
- $this->params['breadcrumbs'][] = ['label' => '书', 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => $model->book->book_name, 'url' => ['view', 'id' => $model->book->id]];
- $this->params['breadcrumbs'][] = Html::encode($model->chapter_name);
- ?>
- <?php $this->beginContent(__DIR__ . '/_layout.php', ['model' => $model]) ?>
- <div class="view-title">
- <h1><?= Html::encode($model->chapter_name) ?></h1>
- </div>
- <div class="view-content"><?= HtmlPurifier::process(Markdown::process($model->chapter_body)) ?></div>
- <?php $this->endContent() ?>
|