Blame view

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

      /**

       * @var Brand[] $brands

       */

2e22f66f   Yarik   Links fixed
5
      use artweb\artbox\components\artboximage\ArtboxImageHelper;

2f25da09   Yarik   first commit
6
7
8
9
10
11
12
      use artweb\artbox\ecommerce\models\Brand;

  

  ?>

  <div class="slider_prod">

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

      <div class="prods_carousel">

          <ul>

2e22f66f   Yarik   Links fixed
13
              <?php foreach ($brands as $brand) { ?>

2f25da09   Yarik   first commit
14
                  <li>

2e22f66f   Yarik   Links fixed
15
16
17
18
19
20
                      <span><a href="<?= \yii\helpers\Url::to(

                              '/brands/' . $brand->lang->alias

                          ) ?>" title="<?= $brand->lang->title ?>"><?= $brand->image ? ArtboxImageHelper::getImage(

                                  $brand->imageFile,

                                  'brandlist'

                              ) : '' ?></a></span>

2f25da09   Yarik   first commit
21
22
23
24
25
26
                  </li>

              <?php } ?>

          </ul>

      </div>

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

  </div>