piwigo/template/yoga/admin/tabsheet.tpl
rub 4621be1005 0000809: Use more php classes implementation
Use class for tabsheet like grum class
Change way for tabsheet

git-svn-id: http://piwigo.org/svn/trunk@2226 68402e56-0260-453c-a942-63ccdbb3a9ee
2008-02-28 23:41:47 +00:00

8 lines
No EOL
274 B
Smarty

{* $Id$ *}
{if isset($tabsheet) and count($tabsheet)}
<ul class="tabsheet">
{foreach from=$tabsheet key=name item=sheet}
<li class="{if ($name == $tabsheet_selected)}selected_tab{else}normal_tab{/if}"><a href="{$sheet.url}">{$sheet.caption}</a></li>
{/foreach}
</ul>
{/if}