PHP Classes

File: htdocs/themes/xbootstrap5/modules/extgallery/blocks/extgallery_block_ajax.tpl

Recommend this page to a friend!
  Packages of Michael Beck   Xoops 2.5   htdocs/themes/xbootstrap5/modules/extgallery/blocks/extgallery_block_ajax.tpl   Download  
File: htdocs/themes/xbootstrap5/modules/extgallery/blocks/extgallery_block_ajax.tpl
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change:
Date: 2 months ago
Size: 1,689 bytes
 

Contents

Class file image Download
<script> jQuery(document).ready(function ($) { $('#extgallery-carousel div.item:first-child').addClass('active'); $('#ext-ind > li:first-child').addClass('active'); var extgallery = $('#ext-ind > li'); extgallery.each( function (index) { $(this).attr('data-bs-slide-to', index); } ) }); </script> <div id="extgallery-carousel" class="carousel slide" data-bs-ride="carousel"> <ol id="ext-ind" class="carousel-indicators"> <{foreach item=photo from=$block.photos|default:null}> <li data-bs-target="#extgallery-carousel"></li> <{/foreach}> </ol> <div class="carousel-inner" role="listbox"> <{foreach item=photo from=$block.photos|default:null}> <div class="item"> <img src="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>" alt="<{$photo.photo_title}>"> <div class="carousel-caption"> <h3><{$photo.photo_title}></h3> <p><{$photo.photo_desc}></p> <a class="btn btn-sm btn-primary" title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>"> <{$smarty.const._MB_EXTGALLERY_MOREINFO}> </a> </div> </div> <{/foreach}> <a class="left carousel-control" href="#extgallery-carousel" data-bs-slide="prev"><span class="icon-prev"></span></a> <a data-bs-slide="next" href="#extgallery-carousel" class="right carousel-control"><span class="icon-next"></span></a> </div> </div>