update.php 603 B

1234567891011121314151617181920212223
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model app\models\Help */
  5. $this->title = Yii::t('app', 'Update {modelClass}: ', [
  6. 'modelClass' => 'Help',
  7. ]) . $model->title;
  8. $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Helps'), 'url' => ['index']];
  9. $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
  10. $this->params['breadcrumbs'][] = Yii::t('app', 'Update');
  11. ?>
  12. <div class="help-update">
  13. <h1><?= Html::encode($this->title) ?></h1>
  14. <?= $this->render('_form', [
  15. 'model' => $model,
  16. ]) ?>
  17. </div>