Blame view

backend/views/site/gallery.php 768 Bytes
6af5dbe3   Alexey Boroda   -Admin gallery ready
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?php
      
      use artbox\core\widgets\GalleryWidget;
      use common\models\Gallery;
      use yii\helpers\Html;
      use yii\web\View;
      use yiister\gentelella\widgets\Panel;
      
      /**
       * @var View    $this
       * @var Gallery $model
       */
      
      Panel::begin(
          [
d68614ad   Eugeny Galkovskiy   translates 1
16
              'header' => \Yii::t('app', 'Галерея'),
6af5dbe3   Alexey Boroda   -Admin gallery ready
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
          ]
      );
      
      echo Html::beginForm();
  ?>
  
  <div class="row">
      <?php
          echo GalleryWidget::widget(
              [ 'model' => $model, ]
          );
      ?>
  </div>
  <div class="row">
      <?= Html::submitButton(
809b0ee3   Eugeny Galkovskiy   Переводы 1
32
          \Yii::t('app', 'Сохранить'),
6af5dbe3   Alexey Boroda   -Admin gallery ready
33
34
35
36
37
38
39
40
41
42
43
44
45
46
          [
              'class' => 'btn btn-lg btn-primary',
          ]
      ) ?>
  </div>
  <?php
      
      echo Html::endForm();
      
      Panel::end();
  
  ?>