Blame view

backend/components/views/_gallery_item.php 251 Bytes
4c977682   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
  <?php
  use yii\helpers\Html;
  
  ?>
  <div class="gallery_image">
      <?= Html::img($item['image'])?>
      <span data-url="<?=$item['image']?>" title="удалить изображение" class="glyphicon glyphicon-trash delete-gallery-item"></span>
  </div>