Blame view

frontend/widgets/views/_parthnerList.php 677 Bytes
555c4968   alex   Изменил фото и на...
1
2
3
4
  <?php
  /**
   * @var $data frontend\widgets\ParthnersList
   */
ec0ad167   alex   Поменял логику ра...
5
6
  
  use artbox\core\components\imagemanager\models\ImageManager;
d6b04401   alex   Поменял логику ра...
7
  use yii\helpers\Url;
ec0ad167   alex   Поменял логику ра...
8
9
  
  
555c4968   alex   Изменил фото и на...
10
11
  ?>
  
5b0d6c15   alex   Партнёры, последн...
12
  <ul class="owl-carousel customers" >
ec0ad167   alex   Поменял логику ра...
13
      <?php  ?>
555c4968   alex   Изменил фото и на...
14
  	<?php foreach ($data as $parthner):?>
ec0ad167   alex   Поменял логику ра...
15
      <?php
d6b04401   alex   Поменял логику ра...
16
17
18
19
  
      $filePath=(file_exists(Url::to("@web/img/".$parthner->image->fileName)))
          ?Url::to("@web/img/".$parthner->image->fileName):
  	    Url::to("@web/img/no-image.png");
ec0ad167   alex   Поменял логику ра...
20
21
22
23
          ?>
  
  
  
555c4968   alex   Изменил фото и на...
24
            <li class="item">
d6b04401   alex   Поменял логику ра...
25
  	          <a target="_blank" href="<?=$parthner->link;?>"><img src="<?=Url::to("@web/img/".$parthner->image->fileName,true)?>" alt="" class="img-responsive"></a>
555c4968   alex   Изменил фото и на...
26
27
28
            </li>
  <?php endforeach;?>
          </ul>