mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-21 00:53:04 +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
224 B
Smarty
11 lines
224 B
Smarty
|
|
<!-- generic menu bar -->
|
|
<dt>{$section.NAME|@translate}</dt>
|
|
<dd>
|
|
<ul>
|
|
{foreach from=$section.ITEMS item=item}
|
|
<li><a href="{$item.URL}" title="{$item.TITLE}">{$item.NAME}</a></li>
|
|
{/foreach}
|
|
</ul>
|
|
</dd>
|