Blame view

artweb/artbox-catalog/views/product/_gallery.php 292 Bytes
16f1e516   mzavalniuk   add artbox-catalo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <?php
      
      use artbox\catalog\models\Product;
      use artbox\core\widgets\GalleryWidget;
      use yii\widgets\ActiveForm;
      
      /**
       * @var ActiveForm $form
       * @var Product    $model
       */
  
  ?>
  
  <?php
      echo GalleryWidget::widget(
      [
          'model' => $model,
      ]
  )
  ?>