0byt3m1n1
Path:
/
data
/
applications
/
aps
/
gallery
/
2.2-08
/
htdocs
/
modules
/
core
/
templates
/
blocks
/
[
Home
]
File: PeerList.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:null} {assign var="data" value=$block.core.LoadPeers} {if !empty($data.peers)} <div class="{$class}"> <h3 class="parent"> {$data.parent.title|default:$data.parent.pathComponent|markup} </h3> {assign var="lastIndex" value=0} {foreach from=$data.peers item=peer} {assign var="title" value=$peer.title|default:$peer.pathComponent} {if ($peer.peerIndex - $lastIndex > 1)} <span class="neck">...</span> {/if} {if ($peer.peerIndex == $data.thisPeerIndex)} <span class="current"> {g->text text="%d. %s" arg1=$peer.peerIndex arg2=$title|markup:strip|entitytruncate:14} </span> {else} <a href="{g->url params=$theme.pageUrl arg1="itemId=`$peer.id`"}"> {g->text text="%d. %s" arg1=$peer.peerIndex arg2=$title|markup:strip|entitytruncate:14} </a> {/if} {assign var="lastIndex" value=$peer.peerIndex} {/foreach} </div> {/if}