1
rich1785
Extgallery throwing errors on install
  • 2012/4/17 23:07

  • rich1785

  • Just popping in

  • Posts: 10

  • Since: 2004/1/3 1


I have been trying to install extgallery on my Xoops 2.5.5, and keep getting the same error repeatedly. I have uninstalled the module, and deleted the files, and then re-uploaded the module and still have no luck. I am using the extgallery 1.1 with no luck.

Error : Smarty error: [in db:extgallery_block.html line 1]: syntax error: unidentified token '#039;true'' (Smarty_Compiler.class.php, line 1410)

Anyone have any ideas as to what would be the problem?

2
redheadedrod
Re: Extgallery throwing errors on install

Is this the version that comes in the basic module pack?

That version should work with any of the 2.5 branch.

Also check that the file permissions are all correct for your module and the directory you are putting it in. Could be a file permissions error or you have a corrupt copy of the module perhaps? Missing files?

I have it installed on my machine here with 2.5.4 with no issues.

Also make sure you delete the files in your cache directories. These can sometimes mess you up when you install new versions etc.





Attending College working towards Bachelors in Software Engineering and Network Security.

3
rich1785
Re: Extgallery throwing errors on install
  • 2012/4/18 23:12

  • rich1785

  • Just popping in

  • Posts: 10

  • Since: 2004/1/3 1


I have tried to do 1.0.9, and it comes up with the same error, and then downloaded 1.1, and got the error. So I started a new account on the server, copied all the same files of the affected site to the new account. Then did the install of xoops, then copied the same files for all modules, and it installed every so easy with no errors. So there is something that is corrupt in the core of the Xoops extension.

Not sure what is going on, but I will use CPanel to copy the new account back to the old one and see if that will work.

Will update status....

4
Tazman_al
Re: Extgallery throwing errors on install
  • 2012/4/18 23:45

  • Tazman_al

  • Just popping in

  • Posts: 66

  • Since: 2008/7/3 1


I had the same problem a while ago.
If I remember correctly found it was related to part of the template file being missing!

Path: /modules/extgallery/templates/blocks extgallery_block.html

Don't know why it happens (I ended up copying a working version from another of my sites to fix).

Could be this is the problem. This is the code from my working version.
Hope it helps.
Al

<{if $block.jquery == 'true'}>
  <{if 
$block.ajaxeffect == lightbox}>
        <
script type="text/javascript">
        $(function() {
            $(
'#gallery a').lightBox({
              
imageLoading:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-ico-loading.gif}>',
              
imageBtnClose:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-btn-close.gif}>',
              
imageBtnNext:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-btn-next.gif}>',
              
imageBtnPrev:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-btn-prev.gif}>',
              
imageBlank:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-blank.gif}>'
          
});
        });
        </
script>
  <{/if}>
  <{if 
$block.ajaxeffect == tooltip}>
        <
style>#screenshot img {max-width: <{$block.tooltipw}>px; border: <{$block.tooltipbw}>px solid <{$block.tooltipbbg}> !important;}</style>   
  
<{/if}>
  <{if 
$block.ajaxeffect == overlay}>
        <
style>
        .
apple_overlay {
            
background-color: <{$block.overlyabg}>;
            
width: <{$block.overlyaw}>px !important;
            
height: <{$block.overlyah}>px !important;
         }
         .
apple_overlay img {
            
max-width: <{$block.overlyaw}>px !important;
            
max-height: <{$block.overlyah}>px !important;
          }
        </
style>
  <{/if}>
  <{if 
$block.ajaxeffect == fancybox}>
        <
script type="text/javascript">
        $(
document).ready(function() {
        <{if 
$block.fancyboxshow == group}>
          $(
"a[rel=example_group]").fancybox({
        <{else}>
          $(
"a.example").fancybox({
        <{/if}>  
            
'overlayColor'    '<{$block.fancyboxbg}>',
            
'overlayOpacity'  : <{$block.fancyboxop}>,
            
'transitionIn'    '<{$block.fancyboxtin}>',
            
'transitionOut'  '<{$block.fancyboxtout}>',
            
'titlePosition'   '<{$block.fancyboxtp}>',
            
'titleFormat'    : function(titlecurrentArraycurrentIndexcurrentOpts) {
              return 
'<span id="fancybox-title-over">Image ' + (currentIndex 1) + ' / ' currentArray.length + (title.length '   ' title '') + '</span>';
            }
          });
        });
    </
script>
  <{/if}>
  <{if 
$block.ajaxeffect == jcarousel}>
      <
script type="text/javascript">
        
jQuery(document).ready(function() {
          
jQuery('#mycarousel').jcarousel(<{if $block.direction == 1}>{verticaltruescroll2}<{/if}>);
        });
      </
script>
      <
style>
      .
jcarousel-skin-tango .jcarousel-container-horizontal {width: <{$block.jcarouselhwidth}>px;}
      .
jcarousel-skin-tango .jcarousel-container-vertical {height: <{$block.jcarouselvheight}>pxwidth: <{$block.jcarouselvwidth}>px;}
      .
jcarousel-skin-tango .jcarousel-clip-vertical {height: <{$block.jcarouselvheight}>px;}
    </
style>
  <{/if}>
<{else}>
  <{if 
$block.ajaxeffect == lightbox}>
        <
script type="text/javascript" src="<{xoAppUrl browse.php?Frameworks/jquery/plugins/jquery.lightbox.js}>"></script>
        <
link rel="stylesheet" type="text/css" href="<{xoAppUrl browse.php?modules/system/css/lightbox.css}>" />
        <
script type="text/javascript">
        $(function() {
            $(
'#gallery a').lightBox({
              
imageLoading:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-ico-loading.gif}>',
              
imageBtnClose:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-btn-close.gif}>',
              
imageBtnNext:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-btn-next.gif}>',
              
imageBtnPrev:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-btn-prev.gif}>',
              
imageBlank:'<{xoAppUrl modules/extgallery/images/lightbox/lightbox-blank.gif}>'
          
});
        });
        </
script>
  <{/if}>
  <{if 
$block.ajaxeffect == tooltip}>
       <
script type="text/javascript" src="<{xoAppUrl browse.php?modules/extgallery/include/tooltip/image.tooltip.js}>"></script>
        <
link rel="stylesheet" type="text/css" href="<{xoAppUrl browse.php?modules/extgallery/include/tooltip/image.tooltip.css}>" />  
        <
style>#screenshot img {max-width: <{$block.tooltipw}>px; border: <{$block.tooltipbw}>px solid <{$block.tooltipbbg}> !important;}</style>   
  
<{/if}>
  <{if 
$block.ajaxeffect == overlay}>
        <
script type="text/javascript" src="<{xoAppUrl browse.php?modules/extgallery/include/overlay/overlay.jquery.tools.min.js}>"></script>
        <
link rel="stylesheet" type="text/css" href="<{xoAppUrl browse.php?modules/extgallery/include/overlay/overlay.css}>" media="screen" />
        <
style>
        .
apple_overlay {
            
background-color: <{$block.overlyabg}>;
            
width: <{$block.overlyaw}>px !important;
            
height: <{$block.overlyah}>px !important;
         }
         .
apple_overlay img {
            
max-width: <{$block.overlyaw}>px !important;
            
max-height: <{$block.overlyah}>px !important;
          }
        </
style>
  <{/if}>
  <{if 
$block.ajaxeffect == fancybox}>
       <
script type="text/javascript" src="<{xoAppUrl browse.php?modules/extgallery/include/fancybox/mousewheel.js}>"></script>
       <
script type="text/javascript" src="<{xoAppUrl browse.php?modules/extgallery/include/fancybox/fancybox.pack.js}>"></script>
        <
link rel="stylesheet" type="text/css" href="<{xoAppUrl browse.php?modules/extgallery/include/fancybox/fancybox.css}>" />  
        <
script type="text/javascript">
        $(
document).ready(function() {
        <{if 
$block.fancyboxshow == group}>
          $(
"a[rel=example_group]").fancybox({
        <{else}>
          $(
"a.example").fancybox({
        <{/if}>  
            
'overlayColor'    '<{$block.fancyboxbg}>',
            
'overlayOpacity'  : <{$block.fancyboxop}>,
            
'transitionIn'    '<{$block.fancyboxtin}>',
            
'transitionOut'  '<{$block.fancyboxtout}>',
            
'titlePosition'   '<{$block.fancyboxtp}>',
            
'titleFormat'    : function(titlecurrentArraycurrentIndexcurrentOpts) {
              return 
'<span id="fancybox-title-over">Image ' + (currentIndex 1) + ' / ' currentArray.length + (title.length '   ' title '') + '</span>';
            }
          });
        });
    </
script>
  <{/if}>
  <{if 
$block.ajaxeffect == prettyphoto}>
       <
script type="text/javascript" src="<{xoAppUrl browse.php?modules/extgallery/include/prettyphoto/jquery.prettyPhoto.js}>"></script>
        <
link rel="stylesheet" type="text/css" href="<{xoAppUrl browse.php?modules/extgallery/include/prettyphoto/prettyPhoto.css}>" />  
  <{/if}>
  <{if 
$block.ajaxeffect == jcarousel}>
       <
script type="text/javascript" src="<{xoAppUrl browse.php?modules/extgallery/include/jcarousel/jquery.jcarousel.min.js}>"></script>
        <
link rel="stylesheet" type="text/css" href="<{xoAppUrl browse.php?modules/extgallery/include/jcarousel/skin.css}>" />  
      <
script type="text/javascript">
        
jQuery(document).ready(function() {
          
jQuery('#mycarousel').jcarousel(<{if $block.direction == 1}>{verticaltruescroll2}<{/if}>);
        });
      </
script>
      <
style>
      .
jcarousel-skin-tango .jcarousel-container-horizontal {width: <{$block.jcarouselhwidth}>px;}
      .
jcarousel-skin-tango .jcarousel-container-vertical {height: <{$block.jcarouselvheight}>pxwidth: <{$block.jcarouselvwidth}>px;}
      .
jcarousel-skin-tango .jcarousel-clip-vertical {height: <{$block.jcarouselvheight}>px;}
    </
style>
  <{/if}>
<{/if}>

<!-- 
Start prettyPhoto show -->
<{if 
$block.ajaxeffect == prettyphoto}>
   <
ul class="gallery clearfix">
<{/if}>
<!-- 
End prettyPhoto show -->

<
table style="width:100%;">
  <{if 
$block.direction == 0}>
  <
tr>
     <!-- 
Start jcarousel show -->
      <{if 
$block.ajaxeffect == jcarousel}>
         <
ul id="mycarousel" class="jcarousel-skin-tango">
     <{/if}>
      <!-- 
End jcarousel show -->
  
    <{foreach 
item=photo from=$block.photos}>
    <{if 
$block.ajaxeffect != jcarousel}>
    <
td style="text-align:center; vertical-align:middle;">
    <{/if}>
            <!-- 
Start Normal show -->
           <{if 
$block.ajaxeffect == none}>
          <
a title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" /></a>  
         <{/if}>
            <!-- 
End Normal show -->

           <!-- 
Start Tooltip show -->
           <{if 
$block.ajaxeffect == tooltip}>
          <
class="screenshot" title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>" rel="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" /></a>  
         <{/if}>
            <!-- 
End Tooltip show -->
            
            <!-- 
Start Lightbox -->
            <{if 
$block.ajaxeffect == lightbox}>
              <
div id="gallery">
            <
a title="<{$photo.photo_title}>" href="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" /></a>
              </
div>
           <{/if}>
           <!-- 
End Lightbox -->
           
           <!-- 
Start Overlay -->
           <{if 
$block.ajaxeffect == overlay}>
          <
div align="center" id="apple">
            <
img rel="#photo<{$photo.photo_id}>" class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" />
          </
div>
          <
div class="apple_overlay" id="photo<{$photo.photo_id}>"><class="close"></a>
            <
img src="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>" alt="<{$photo.photo_title}>" />                
            <
div class="details">
              <
div align="center"><a href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>"><{$photo.photo_title}></a></div>
               <
p><{$photo.photo_desc}></p>
            </
div>       
          </
div>
           <{/if}>
            <!-- 
End Overlay -->
            
            <!-- 
Start Fansybox -->
            <{if 
$block.ajaxeffect == fancybox}>
              <
<{if $block.fancyboxshow == group }>rel="example_group"<{else}>class="example"<{/if}> href="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>" title="<{$photo.photo_title}>"><img class="last" alt="<{$photo.photo_title}>" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" /></a>
            <{/if}>
            <!-- 
End Fansybox -->
            
            <!-- 
Start prettyPhoto show -->
           <{if 
$block.ajaxeffect == prettyphoto}>
              <
ul class="gallery clearfix">
            <
li><a title="<{$photo.photo_title}>" href="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>" rel="prettyPhoto[gallery2]"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" /></a></li>
               </
ul>          
         <{/if}>
            <!-- 
End prettyPhoto show -->
            
            <!-- 
Start jcarousel show -->
           <{if 
$block.ajaxeffect == jcarousel}>
               <
li><a title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" /></a></li>
         <{/if}>
            <!-- 
End jcarousel show -->
            
      <{if 
$block.title}>
      <
div class="center"><a title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>"><{$photo.photo_title}></a></div>
      <{/if}>
    <{if 
$block.ajaxeffect != jcarousel}>  
    </
td>
    <{/if}>
    <{/foreach}>
    
      <!-- 
Start jcarousel show -->
      <{if 
$block.ajaxeffect == jcarousel}>
         </
ul>
     <{/if}>
      <!-- 
End jcarousel show -->
      
  </
tr>
  <{/if}>
  <{if 
$block.direction == 1}>
  <!-- 
Start jcarousel show -->
   <{if 
$block.ajaxeffect == jcarousel}>
      <
ul id="mycarousel" class="jcarousel-skin-tango">
   <{/if}>
   <!-- 
End jcarousel show -->
  <{foreach 
item=photo from=$block.photos}>
  <{if 
$block.ajaxeffect != jcarousel}>
  <
tr>
    <
td style="text-align:center; vertical-align:middle;">
   <{/if}>      
           <!-- 
Start Normal show -->
           <{if 
$block.ajaxeffect == none}>
          <
a title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" /></a>  
         <{/if}>
            <!-- 
End Normal show -->

           <!-- 
Start Tooltip show -->
           <{if 
$block.ajaxeffect == tooltip}>
          <
class="screenshot" title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>" rel="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" /></a>  
         <{/if}>
            <!-- 
End Tooltip show -->
            
            <!-- 
Start Lightbox -->
            <{if 
$block.ajaxeffect == lightbox}>
              <
div id="gallery">
            <
a title="<{$photo.photo_title}>" href="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" /></a>
              </
div>
           <{/if}>
           <!-- 
End Lightbox -->
           
           <!-- 
Start Overlay -->
           <{if 
$block.ajaxeffect == overlay}>
          <
div align="center" id="apple">
            <
img rel="#photo<{$photo.photo_id}>" class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" />
          </
div>
          <
div class="apple_overlay" id="photo<{$photo.photo_id}>"><class="close"></a>
            <
img alt="<{$photo.photo_title}>" src="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>">                
            <
div class="details">
              <
div align="center"><a title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>"><{$photo.photo_title}></a></div>
               <
p><{$photo.photo_desc}></p>
            </
div>       
          </
div>
           <{/if}>
            <!-- 
End Overlay -->
            
            <!-- 
Start Fansybox -->
            <{if 
$block.ajaxeffect == fancybox}>
              <
<{if $block.fancyboxshow == group }>rel="example_group"<{else}>class="example"<{/if}> href="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>" title="<{$photo.photo_title}>"><img class="last" alt="<{$photo.photo_title}>" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" /></a>
            <{/if}>
            <!-- 
End Fansybox -->
            
            <!-- 
Start prettyPhoto show -->
           <{if 
$block.ajaxeffect == prettyphoto}>
              <
ul class="gallery clearfix">
            <
li><a title="<{$photo.photo_title}>" href="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$photo.photo_name}>" rel="prettyPhoto[gallery2]"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" /></a></li>
               </
ul>          
         <{/if}>
            <!-- 
End prettyPhoto show -->
            
            <!-- 
Start jcarousel show -->
           <{if 
$block.ajaxeffect == jcarousel}>
               <
li><a title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$photo.photo_name}>" alt="<{$photo.photo_title}>" title="<{$photo.photo_title}>" /></a></li>
         <{/if}>
            <!-- 
End jcarousel show -->
            
      <{if 
$block.title}>
      <
div class="center"><a title="<{$photo.photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$photo.photo_id}>"><{$photo.photo_title}></a></div>
      <{/if}>
  <{if 
$block.ajaxeffect != jcarousel}>
    </
td>
  </
tr>
  <{/if}>
  <{/foreach}>
   <!-- 
Start jcarousel show -->
   <{if 
$block.ajaxeffect == jcarousel}>
      </
ul>
   <{/if}>
   <!-- 
End jcarousel show -->
  <{/if}>
  <{if 
$block.direction == 2}>
    <
tr>
    <!-- 
Start jcarousel show -->
      <{if 
$block.ajaxeffect == jcarousel}>
         <
ul id="mycarousel" class="jcarousel-skin-tango">
     <{/if}>
      <!-- 
End jcarousel show -->
    <{
section name=photo loop=$block.photos}>
    <{if 
$smarty.section.photo.index $block.column == && !$smarty.section.photo.first}>
    </
tr>
    <
tr>
    <{/if}>
    <
td>  
    
<{if 
$block.ajaxeffect != jcarousel}>
    <
td style="text-align:center; vertical-align:middle;">
    <{/if}>
            <!-- 
Start Normal show -->
           <{if 
$block.ajaxeffect == none}>
          <
a title="<{$block.photos[photo].photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$block.photos[photo].photo_id}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$block.photos[photo].photo_name}>" alt="<{$block.photos[photo].photo_title}>" title="<{$block.photos[photo].photo_title}>" /></a>  
         <{/if}>
            <!-- 
End Normal show -->

           <!-- 
Start Tooltip show -->
           <{if 
$block.ajaxeffect == tooltip}>
          <
a title="<{$block.photos[photo].photo_title}>" class="screenshot" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$block.photos[photo].photo_id}>" rel="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$block.photos[photo].photo_name}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$block.photos[photo].photo_name}>" alt="<{$block.photos[photo].photo_title}>" title="<{$block.photos[photo].photo_title}>" /></a>  
         <{/if}>
            <!-- 
End Tooltip show -->
            
            <!-- 
Start Lightbox -->
            <{if 
$block.ajaxeffect == lightbox}>
              <
div id="gallery">
            <
a title="<{$block.photos[photo].photo_title}>" href="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$block.photos[photo].photo_name}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$block.photos[photo].photo_name}>" alt="<{$block.photos[photo].photo_title}>" title="<{$block.photos[photo].photo_title}>" /></a>
              </
div>
           <{/if}>
           <!-- 
End Lightbox -->
           
           <!-- 
Start Overlay -->
           <{if 
$block.ajaxeffect == overlay}>
          <
div align="center" id="apple">
            <
img alt="<{$block.photos[photo].photo_title}>" rel="#photo<{$block.photos[photo].photo_id}>" class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$block.photos[photo].photo_name}>" alt="<{$block.photos[photo].photo_title}>" title="<{$block.photos[photo].photo_title}>" />
          </
div>
          <
div class="apple_overlay" id="photo<{$block.photos[photo].photo_id}>"><class="close"></a>
            <
img alt="<{$block.photos[photo].photo_title}>" src="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$block.photos[photo].photo_name}>">                
            <
div class="details">
              <
div align="center"><a title="<{$block.photos[photo].photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$block.photos[photo].photo_id}>"><{$block.photos[photo].photo_title}></a></div>
               <
p><{$block.photos[photo].photo_desc}></p>
            </
div>       
          </
div>
           <{/if}>
            <!-- 
End Overlay -->
            
            <!-- 
Start Fansybox -->
            <{if 
$block.ajaxeffect == fancybox}>
              <
<{if $block.fancyboxshow == group }>rel="example_group"<{else}>class="example"<{/if}> href="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$block.photos[photo].photo_name}>" title="<{$block.photos[photo].photo_title}>"><img class="last" alt="<{$block.photos[photo].photo_title}>" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$block.photos[photo].photo_name}>" /></a>
            <{/if}>
            <!-- 
End Fansybox -->
            
            <!-- 
Start prettyPhoto show -->
           <{if 
$block.ajaxeffect == prettyphoto}>
              <
ul class="gallery clearfix">
            <
li><a title="<{$block.photos[photo].photo_title}>" href="<{$xoops_url}>/uploads/extgallery/public-photo/medium/<{$block.photos[photo].photo_name}>" rel="prettyPhoto[gallery2]"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$block.photos[photo].photo_name}>" alt="<{$block.photos[photo].photo_title}>" /></a></li>
               </
ul>          
         <{/if}>
            <!-- 
End prettyPhoto show -->
            
            <!-- 
Start jcarousel show -->
           <{if 
$block.ajaxeffect == jcarousel}>
               <
li><a title="<{$block.photos[photo].photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$block.photos[photo].photo_id}>"><img class="thumb" src="<{$xoops_url}>/uploads/extgallery/public-photo/thumb/thumb_<{$block.photos[photo].photo_name}>" alt="<{$block.photos[photo].photo_title}>" title="<{$block.photos[photo].photo_title}>" /></a></li>
         <{/if}>
            <!-- 
End jcarousel show -->
            
      <{if 
$block.title}>
      <
div class="center"><a title="<{$block.photos[photo].photo_title}>" href="<{$xoops_url}>/modules/extgallery/public-photo.php?photoId=<{$block.photos[photo].photo_id}>"><{$block.photos[photo].photo_title}></a></div>
      <{/if}>
    <{if 
$block.ajaxeffect != jcarousel}>  
    </
td>
    <{/if}>
    </
td>
    <{/
section}>
    <!-- 
Start jcarousel show -->
      <{if 
$block.ajaxeffect == jcarousel}>
         </
ul>
     <{/if}>
      <!-- 
End jcarousel show -->
    </
tr>
  <{/if}>
</
table>

<!-- 
Start prettyPhoto show -->
<{if 
$block.ajaxeffect == prettyphoto}>
   </
ul>
<{/if}>
<!-- 
End prettyPhoto show -->

<{if 
$block.ajaxeffect == overlay}>
  <
script type="text/javascript">
  $(function() {
    $(
"#apple img[rel]").overlay({effect'apple'});
  });
  </
script>
<{/if}>

<{if 
$block.ajaxeffect == prettyphoto}>
  <
script type="text/javascript" charset="utf-8">
  $(
document).ready(function(){
    $(
".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'<{$block.prettyphotospeed}>',theme:'<{$block.prettyphototheme}>',slideshow:<{$block.prettyphotoslidspeed}>, autoplay_slideshow: <{$block.prettyphotoautoplay}>});
  });
  </
script>
<{/if}>



Login

Who's Online

220 user(s) are online (136 user(s) are browsing Support Forums)


Members: 0


Guests: 220


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits