Enhance plugins administtration
git-svn-id: http://piwigo.org/svn/trunk@2242 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
fab44f72a8
commit
78e175b3fb
15 changed files with 6797 additions and 170 deletions
38
template/yoga/admin/plugins_list.tpl
Normal file
38
template/yoga/admin/plugins_list.tpl
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<div class="titrePage">
|
||||
<h2>{'Plugins'|@translate}</h2>
|
||||
{$TABSHEET}
|
||||
</div>
|
||||
|
||||
{'Sort order'|@translate} :
|
||||
<select onchange="document.location = this.options[this.selectedIndex].value;" style="width:100px">
|
||||
{html_options options=$order selected=$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>
|
||||
{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>
|
||||
{/foreach}
|
||||
</table>
|
||||
{/if}
|
||||
Loading…
Add table
Add a link
Reference in a new issue