aboutsummaryrefslogtreecommitdiffstats
path: root/admin/template/yoga/admin/plugins_list.tpl
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2008-06-22 08:45:28 +0000
committervdigital <vdigital@piwigo.org>2008-06-22 08:45:28 +0000
commitfda524253d89292ad5a3ec9bfed291495a72572e (patch)
treecd2b2aae0c1e38e7be85094e0776d0f0ea3980d4 /admin/template/yoga/admin/plugins_list.tpl
parent7d3d91e95abed9af3ad29e0bce8d2a8a67923d44 (diff)
Admin isolation: Copy of admin templates in admin folder.
(Before previous admin templates removal). Some of css simplification (in admin only currently. git-svn-id: http://piwigo.org/svn/trunk@2390 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/template/yoga/admin/plugins_list.tpl')
-rw-r--r--admin/template/yoga/admin/plugins_list.tpl51
1 files changed, 51 insertions, 0 deletions
diff --git a/admin/template/yoga/admin/plugins_list.tpl b/admin/template/yoga/admin/plugins_list.tpl
new file mode 100644
index 000000000..d5b045141
--- /dev/null
+++ b/admin/template/yoga/admin/plugins_list.tpl
@@ -0,0 +1,51 @@
+<div class="titrePage">
+{$TABSHEET}
+ <h2>{'Plugins'|@translate}</h2>
+</div>
+
+{'Sort order'|@translate} :
+ <select onchange="document.location = this.options[this.selectedIndex].value;" style="width:100px">
+ {html_options options=$order_options selected=$order_selected}
+ </select>
+
+{if isset($plugins)}
+<table class="table2">
+<thead>
+ <tr class="throw">
+ <td>{'Name'|@translate}</td>
+ <td>{'Version'|@translate}</td>
+ <td>{'Description'|@translate}</td>
+ <td>{'Actions'|@translate}</td>
+ </tr>
+</thead>
+{html_head} {*add the style to html head for strict standard compliance*}
+<style type="text/css">
+TABLE.table2 TR TD.pluginState {ldelim}
+ padding-left:16px;
+}
+TABLE.table2 TR TD.active {ldelim}
+ background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_active.gif) no-repeat center left
+}
+TABLE.table2 TR TD.inactive {ldelim}
+ background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_inactive.gif) no-repeat center left
+}
+</style>
+{/html_head}
+{foreach from=$plugins item=plugin name=plugins_loop}
+ <tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}">
+ <td class="pluginState{if not empty($plugin.STATE)} {$plugin.STATE}{/if}">
+ {$plugin.NAME}
+ </td>
+ <td>{$plugin.VERSION}</td>
+ <td>{$plugin.DESCRIPTION}</td>
+ <td>
+ {foreach from=$plugin.actions item=action}
+ <a href="{$action.U_ACTION}"
+ {if isset($action.CONFIRM)} onclick="return confirm('{$action.CONFIRM|@escape:'javascript'}');"{/if}
+ {$TAG_INPUT_ENABLED}>{$action.L_ACTION}</a>
+ {/foreach}
+ </td>
+ </tr>
+{/foreach}
+</table>
+{/if}