Blame view

backend/views/slider/update.php 636 Bytes
d8c1a2e0   Yarik   Big commit artbox
1
  <?php

2f69a481   Yarik   i18n config fix
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
      

      use yii\helpers\Html;

      

      /**

       * @var yii\web\View $this

       * @var common\models\Slider $model

       */

      $this->title = Yii::t('app', 'Update {modelClass}: ', [

              'modelClass' => 'Slider',

          ]) . $model->title;

      $this->params[ 'breadcrumbs' ][] = [

          'label' => Yii::t('app', 'Sliders'),

          'url'   => [ 'index' ],

      ];

      $this->params[ 'breadcrumbs' ][] = Yii::t('app', 'Update');

d8c1a2e0   Yarik   Big commit artbox
17
18
  ?>

  <div class="slider-update">

2f69a481   Yarik   i18n config fix
19
      

d8c1a2e0   Yarik   Big commit artbox
20
      <h1><?= Html::encode($this->title) ?></h1>

2f69a481   Yarik   i18n config fix
21
      

d8c1a2e0   Yarik   Big commit artbox
22
23
24
25
26
      <?= $this->render('_form', [

          'model' => $model,

      ]) ?>

  

  </div>