diff options
author | plegall <plg@piwigo.org> | 2010-03-24 21:31:12 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-24 21:31:12 +0000 |
commit | 31f14fd486a689d83a3712dab8ae2151de57bbc4 (patch) | |
tree | dde9d52dde4b4cfe95a7d0c2bd544bd6595e6739 /plugins/AMenuManager/admin/amm_sectionslist_detail.tpl | |
parent | c639ad1e7e3ec747cac37e230fd8380da98c508b (diff) |
Just like for branch 2.0, AMenuManager and grum_plugins_classes-2 are removed.
These plugins exist in piwigo.org/ext and in piwigo.org/svn/extensions
git-svn-id: http://piwigo.org/svn/trunk@5321 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/AMenuManager/admin/amm_sectionslist_detail.tpl')
-rw-r--r-- | plugins/AMenuManager/admin/amm_sectionslist_detail.tpl | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/plugins/AMenuManager/admin/amm_sectionslist_detail.tpl b/plugins/AMenuManager/admin/amm_sectionslist_detail.tpl deleted file mode 100644 index b94258119..000000000 --- a/plugins/AMenuManager/admin/amm_sectionslist_detail.tpl +++ /dev/null @@ -1,24 +0,0 @@ - -{if isset($datas.sections) and count($datas.sections)} - <table class="table2 littlefont"> - <tr class="throw"> - <th>{'g002_owner'|@translate}</th> - <th>{'g002_sectionid'|@translate}</th> - <th>{'g002_name'|@translate}</th> - <th>{'g002_visible'|@translate}</th> - <th colspan=2> </th> - </tr> - - {foreach from=$datas.sections key=name item=section} - <tr> - <td>{$section.OWNER}</td> - <td>{$section.ID}</td> - <td>{$section.NAME}</td> - <td style="text-align:center;"><a style="cursor:pointer;" onclick="load_list('showhide', '{$section.ID}', '')">{$section.VISIBLE}</a></td> - <td width="15px">{if $section.up}<a style="cursor:pointer;" onclick="load_list('position', '{$section.ID}', '{$section.PREVPOS}')"><img src='{$plugin.PATH}/admin/go-up.png'/></a>{else} {/if}</td> - <td width="15px">{if $section.down}<a style="cursor:pointer;" onclick="load_list('position', '{$section.ID}', '{$section.NEXTPOS}')"><img src='{$plugin.PATH}/admin/go-down.png'/></a>{else} {/if}</td> - </tr> - {/foreach} - - </table> -{/if} |