Blame view

widgets/views/brandsCarousel.php 709 Bytes
2f25da09   Yarik   first commit
1
2
3
4
  <?php

      /**

       * @var Brand[] $brands

       */

8a7e6ecf   Yarik   Namespaces
5
      use artweb\artbox\ecommerce\components\artboximage\ArtboxImageHelper;

2f25da09   Yarik   first commit
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
      use artweb\artbox\ecommerce\models\Brand;

  

  ?>

  <div class="slider_prod">

      <div class="pc_prev"></div>

      <div class="prods_carousel">

          <ul>

              <?php foreach($brands as $brand) { ?>

                  <li>

                      <span><a href="<?= \yii\helpers\Url::to('/brands/' . $brand->lang->alias) ?>" title="<?= $brand->lang->title ?>"><?= $brand->image ? ArtboxImageHelper::getImage($brand->imageFile, 'brandlist') : '' ?></a></span>

                  </li>

              <?php } ?>

          </ul>

      </div>

      <div class="pc_next"></div>

  </div>