update.php 514 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: NODELOG
  5. * Date: 2016/12/15
  6. * Time: 下午2:20
  7. */
  8. /**
  9. * @var \yii\web\View $this
  10. * @var \common\modules\book\models\Book $model
  11. */
  12. use yii\helpers\Html;
  13. use yii\helpers\HtmlPurifier;
  14. use yii\helpers\Markdown;
  15. use backend\widgets\ActiveForm;
  16. $this->title = '编辑书:' . $model->book_name;
  17. $this->params['breadcrumbs'][] = ['label' => '书', 'url' => ['index']];
  18. $this->params['breadcrumbs'][] = $this->title;
  19. ?>
  20. <?= $this->render('_form', ['model' => $model]) ?>