_parthnerList.php
578 Bytes
<?php
/**
* @var $data frontend\widgets\ParthnersList
*/
use artbox\core\components\imagemanager\models\ImageManager;
?>
<ul class="owl-carousel customers" >
<?php ?>
<?php foreach ($data as $parthner):?>
<?php
$filePath=(file_exists('../../web/img/'.$parthner->image->fileName))
?'/img/'.$parthner->image->fileName:'/img/no-image.png';
?>
<li class="item">
<a target="_blank" href="<?=$parthner->link;?>"><img src="<?=$filePath;?>" alt="" class="img-responsive"></a>
</li>
<?php endforeach;?>
</ul>