mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-05 17:32:25 +02:00
- 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
This commit is contained in:
@@ -33,7 +33,7 @@ include_once(PHPWG_ROOT_PATH.'admin/include/plugins.class.php');
|
||||
$template->set_filenames(array('plugins' => 'admin/plugins_list.tpl'));
|
||||
|
||||
$order = isset($_GET['order']) ? $_GET['order'] : 'name';
|
||||
$base_url = get_root_url().'admin.php?page='.$page['page'].'&order='.$order;
|
||||
$base_url = get_root_url().'admin.php?page='.$page['page'].'&order='.$order;
|
||||
|
||||
$plugins = new plugins();
|
||||
|
||||
@@ -93,10 +93,11 @@ foreach($plugins->fs_plugins as $plugin_id => $fs_plugin)
|
||||
'VERSION' => $fs_plugin['version'],
|
||||
'DESCRIPTION' => $desc);
|
||||
|
||||
$action_url = htmlentities($base_url).'&plugin='.$plugin_id;
|
||||
$action_url = $base_url.'&plugin='.$plugin_id;
|
||||
|
||||
if (isset($plugins->db_plugins_by_id[$plugin_id]))
|
||||
{
|
||||
{
|
||||
$tpl_plugin['STATE'] = $plugins->db_plugins_by_id[$plugin_id]['state'];
|
||||
switch ($plugins->db_plugins_by_id[$plugin_id]['state'])
|
||||
{
|
||||
case 'active':
|
||||
@@ -136,7 +137,7 @@ $missing_plugin_ids = array_diff(
|
||||
|
||||
foreach($missing_plugin_ids as $plugin_id)
|
||||
{
|
||||
$action_url = htmlentities($base_url).'&plugin='.$plugin_id;
|
||||
$action_url = $base_url.'&plugin='.$plugin_id;
|
||||
|
||||
$template->append( 'plugins',
|
||||
array(
|
||||
|
||||
@@ -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>
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 108 B |
Binary file not shown.
|
After Width: | Height: | Size: 107 B |
Reference in New Issue
Block a user