mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-13 13:21:43 +02:00
7ebed79726
http://forum.phpwebgallery.net/viewtopic.php?pid=92097#p92097 A plugin to integrate the menu class see test_menu directory A plugin to show how to use the menu class see AMenuManager directory And common classes needed for the AMenuManager plugin see grum_plugins_classes-2 directory See topic http://forum.phpwebgallery.net/viewtopic.php?pid=92637#p92637 for more informations git-svn-id: http://piwigo.org/svn/trunk@2466 68402e56-0260-453c-a942-63ccdbb3a9ee
11 lines
254 B
Smarty
11 lines
254 B
Smarty
|
|
<!-- special menu bar -->
|
|
<dt>{$section.NAME|@translate}</dt>
|
|
<dd>
|
|
<ul>
|
|
{foreach from=$section.ITEMS item=cat}
|
|
<li><a href="{$cat.URL}" title="{$cat.TITLE}" {if isset($cat.REL)}{$cat.REL}{/if}>{$cat.NAME}</a></li>
|
|
{/foreach}
|
|
</ul>
|
|
</dd>
|