templates/theme-design/rsce_galleryLogos.html5 line 12

Open in your IDE?
  1. <?php include('include_helper_content.html5'); ?>
  2. <div class="<?= $custom->classDMAGrid ?>"<?= $this->attributes ?>>
  3.   <div class="<?= $custom->classModified ?> c-galleryLogos--perRow-<?= $this->perRow ?>"<?= $this->cssID ?>>
  4.     <div class="c-galleryLogos__inner">
  5.     <?php  
  6.       $dataSorted array_map('\StringUtil::binToUuid'deserialize($this->orderSRCtrue)); 
  7.       foreach ( $dataSorted as $index => $data ):
  8.     ?>
  9.       <?php if (
  10.           ($index $this->numberOfItems || $this->numberOfItems == 0) &&
  11.           ($image $this->getImageObject($data$this->size))): ?>
  12.         <div class="c-galleryLogos__item">
  13.           <?php if(isset($image->href)): ?><a href="<?= $image->href ?>"><?php endif; ?>
  14.           <?php $this->insert('picture_default'$image->picture?>
  15.           <?php if(isset($image->href)): ?></a><?php endif; ?>
  16.         </div>
  17.       <?php endif; ?>
  18.     <?php endforeach; ?>
  19.     </div>
  20.   </div>
  21. </div>