Blame view

frontend/widgets/views/_parthnerList.php 578 Bytes
555c4968   alex   Изменил фото и на...
1
2
3
4
  <?php
  /**
   * @var $data frontend\widgets\ParthnersList
   */
ec0ad167   alex   Поменял логику ра...
5
6
7
8
9
  
  use artbox\core\components\imagemanager\models\ImageManager;
  
  
  
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
16
17
18
19
20
21
      <?php
      $filePath=(file_exists('../../web/img/'.$parthner->image->fileName))
          ?'/img/'.$parthner->image->fileName:'/img/no-image.png';
          ?>
  
  
  
555c4968   alex   Изменил фото и на...
22
            <li class="item">
ec0ad167   alex   Поменял логику ра...
23
  	          <a target="_blank" href="<?=$parthner->link;?>"><img src="<?=$filePath;?>" alt="" class="img-responsive"></a>
555c4968   alex   Изменил фото и на...
24
25
26
            </li>
  <?php endforeach;?>
          </ul>