Newer
Older
Import / web / www.xiaofrog.com / gallery / themes / carbon / templates / navigatorMicroThumbs.tpl
{*
 * $Revision: 15342 $
 * If you want to customize this file, do not edit it directly since future upgrades
 * may overwrite it.  Instead, copy it into a new directory called "local" and edit that
 * version.  Gallery will look for that file first and use it if it exists.
 *}
{g->callback type="core.LoadPeers" item=$item|default:$theme.item
	     windowSize=$windowSize|default:$theme.params.maxMicroThumbs
	     addEnds=false loadThumbnails=true}

{assign var="data" value=$block.core.LoadPeers}

{if !empty($data.peers)}
<div>
  {assign var="lastIndex" value=0}
  {assign var="columnIndex" value=0}
  <table cellpadding="0" cellspacing="2">
    <tr>
    {foreach from=$data.peers item=peer}
      {assign var="title" value=$peer.title|default:$peer.pathComponent}
      {if ($columnIndex == 4)}
	</tr>
	<tr>
	{assign var="columnIndex" value=0}
      {/if}

      {if (!$peer.canContainChildren && $peer.entityType != 'GalleryLinkItem')}
	{if ($peer.peerIndex == $data.thisPeerIndex)}
	  <td id="microThumbCurrent" align="center" width="44" height="40">
	    {if isset($peer.thumbnail)}
	      {g->image item=$peer image=$peer.thumbnail maxSize=40 title="$title"}
	    {else}
	      {g->text text="no thumbnail"}
	    {/if}
	  </td>
	{else}
	  <td align="center" width="44" height="40">
	    {strip}
	    <a href="{g->url params=$theme.pageUrl arg1="itemId=`$peer.id`"}">
	      {if isset($peer.thumbnail)}
	        {g->image item=$peer image=$peer.thumbnail maxSize=40 title="$title"}
	      {else}
	        {g->text text="no thumbnail"}
	      {/if}
	    </a>
	    {/strip}
	  </td>
	{/if}
	
	{assign var="lastIndex" value=$peer.peerIndex}
	{assign var="columnIndex" value=$columnIndex+1}
      {/if}
    {/foreach}
    </tr>
  </table>
</div>
{/if}