aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2008-03-29 00:20:29 +0000
committerrvelices <rv-github@modusoptimus.com>2008-03-29 00:20:29 +0000
commit5cdf987baf1f671fe7be0d864c4a8b7df88085a1 (patch)
tree2cb416926ccc39327c2e789c97db7ffce8baab75 /template
parent9e1f97cd16128bfc9488c4d75f8e3f04c95b24ed (diff)
- added 2 icons for the active/inactive plugins in the plugin list
git-svn-id: http://piwigo.org/svn/trunk@2293 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template')
-rw-r--r--template/yoga/admin/plugins_list.tpl26
-rw-r--r--template/yoga/icon/admin/plugin_active.gifbin0 -> 108 bytes
-rw-r--r--template/yoga/icon/admin/plugin_inactive.gifbin0 -> 107 bytes
3 files changed, 13 insertions, 13 deletions
diff --git a/template/yoga/admin/plugins_list.tpl b/template/yoga/admin/plugins_list.tpl
index 767a0924e..8276cd359 100644
--- a/template/yoga/admin/plugins_list.tpl
+++ b/template/yoga/admin/plugins_list.tpl
@@ -19,19 +19,19 @@
</tr>
</thead>
{foreach from=$plugins item=plugin name=plugins_loop}
- <tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}">
- <td>{$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 class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}">
+ <td style="padding-left:16px; {if not empty($plugin.STATE)}background: url({$ROOT_URL}{$themeconf.admin_icon_dir}/plugin_{$plugin.STATE}.gif) no-repeat center left{/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>
diff --git a/template/yoga/icon/admin/plugin_active.gif b/template/yoga/icon/admin/plugin_active.gif
new file mode 100644
index 000000000..fe49227da
--- /dev/null
+++ b/template/yoga/icon/admin/plugin_active.gif
Binary files differ
diff --git a/template/yoga/icon/admin/plugin_inactive.gif b/template/yoga/icon/admin/plugin_inactive.gif
new file mode 100644
index 000000000..19d551865
--- /dev/null
+++ b/template/yoga/icon/admin/plugin_inactive.gif
Binary files differ