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