update.php 515 B

12345678910111213141516171819
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model common\models\ArticleModule */
  5. $this->title = 'Update Article Module: ' . ' ' . $model->name;
  6. $this->params['breadcrumbs'][] = ['label' => 'Article Modules', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
  8. $this->params['breadcrumbs'][] = 'Update';
  9. ?>
  10. <div class="article-module-update">
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. ]) ?>
  14. </div>