d4a7be644b
+ fixes "Links" translation bug updating files for the AMenuManager plugin + enhance links template updating common classes grum_plugins_classes-2 (needed for the AMenuManager plugin) + clearing the code updating the calendar_base.class.php the 'get_nav_bar_from_items' method was returning a hard coded html string now replaced by a template file (calendar_nav.tpl) git-svn-id: http://piwigo.org/svn/trunk@2469 68402e56-0260-453c-a942-63ccdbb3a9ee
13 lines
No EOL
289 B
Smarty
13 lines
No EOL
289 B
Smarty
|
|
{foreach from=$datas item=data}
|
|
<span class="{$data.classname}">
|
|
{if isset($data.url) and $data.url!=""}
|
|
<a href="{$data.url}">{$data.label}</a>
|
|
{else}
|
|
{$data.label}
|
|
{/if}
|
|
{if isset($data.nb_images) and $data.nb_images!=""}
|
|
({$data.nb_images})
|
|
{/if}
|
|
</span>
|
|
{/foreach} |