Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. + <?php if($APP->registry->get('Product/showVideoBeforeMainImageOnProductDetailsPage')){ ?>
  2. + <?php $iCount = 0; ?>
  3. + <?php if(count($productVideo)){ ?>
  4. + <?php foreach($productVideo as $video){ ?>
  5. + <?php $iCount++; ?>
  6. + <li>
  7. + <div class="tab-pane" id="videos" style="position: relative;padding-bottom: 56.25%;margin-top:20px;padding-top: 25px;height: 0;">
  8. + <div class="video-h clearfix">
  9. + <?php if($video['type'] == 'youtube'){?>
  10. + <iframe style="position: absolute;top: 0;left: 0;width: 100%;height: 100%;" width="" height="" src="https://www.youtube.com/embed/<?php echo $video['link']; ?>?modestbranding=1&showinfo=0&fs=0" allowfullscreen="" frameborder='0'></iframe>
  11. + <?php } elseif($video['type'] == 'vimeo') {?>
  12. + <iframe style="position: absolute;top: 0;left: 0;width: 100%;height: 100%;" width="" height="" src="https://player.vimeo.com/video/<?php echo $video['link']; ?>" allowfullscreen="" frameborder='0'></iframe>
  13. + <?php }?>
  14. + </div>
  15. + <?php } ?>
  16. + </div>
  17. + <?php } ?>
  18. + <?php foreach($images as $key=>$i){ ?>
  19. + <li><a href="<?php echo $i['original']?>" class="prod-gallery __retargetingImageThumbSelector" rel="prod-gallery">
  20. + <img id="img_<?php echo $iCount++?>" data-zoom-image="<?php echo $i['original'];?>" src="<?php echo $i['large'];?>" data-id="<?php echo $product->id; ?>" alt="<?php echo $product->name; ?>" title="<?php echo $product->name. '-big'; ?>" class="standard-zoom img-responsive swaped-image zoom pinchzoom" data-src="<?php echo $i['large']; ?>" data-full-image="<?php echo $i['original']; ?>">
  21. + </a></li>
  22. + <?php }?>
  23. + <?php } else { ?>
  24. <?php foreach($images as $key=>$i){ ?>
  25. +<<<<<<< destination:51e65c9b87bbfd4e2993db34011975a3b5732d0a
  26. <li><a href="<?php echo $i['original']?>" class="prod-gallery __retargetingImageThumbSelector" rel="prod-gallery">
  27. <img id="img_<?php echo $key?>" data-zoom-image="<?php echo $i['original'];?>" src="<?php echo $i['large'];?>" data-id="<?php echo $product->id; ?>" alt="<?php echo $product->image_alt_text ? : $product->name; ?>" title="<?php echo $product->image_alt_text ? : $product->name. '-big'; ?>" class="standard-zoom img-responsive swaped-image zoom pinchzoom" data-src="<?php echo $i['large']; ?>" data-full-image="<?php echo $i['original']; ?>">
  28. </a></li>
  29. +=======
  30. + <li><a href="<?php echo $i['original']?>" class="prod-gallery __retargetingImageThumbSelector" rel="prod-gallery">
  31. + <img id="img_<?php echo $key?>" data-zoom-image="<?php echo $i['original'];?>" src="<?php echo $i['large'];?>" data-id="<?php echo $product->id; ?>" alt="<?php echo $product->name; ?>" title="<?php echo $product->name. '-big'; ?>" class="standard-zoom img-responsive swaped-image zoom pinchzoom" data-src="<?php echo $i['large']; ?>" data-full-image="<?php echo $i['original']; ?>">
  32. + </a></li>
  33. + <?php }?>
  34. +>>>>>>> source:6339bd05be5a862ad4c0e423be52a4a3b024adff
  35. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement