Blame view

common/widgets/views/_gallery_item.php 256 Bytes
eb7e82fb   Administrator   29.02.16
1
2
3
4
5
6
7
  <?php

  use yii\helpers\Html;

  

  ?>

  

  <div class="gallery_image">

      <?= Html::img($item['image'])?>

06ec2844   Administrator   28.03.16
8
      <span data-url="<?=$item['image']?>" title="<?= Yii::t('app', 'delete_img')?>" class="glyphicon glyphicon-trash delete-gallery-item"></span>

29b842c0   Administrator   add field v.1
9
  </div>