2008-03-02 18:53:23 +01:00
|
|
|
<?php
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | PhpWebGallery - a PHP based picture gallery |
|
2008-03-07 11:42:51 +01:00
|
|
|
// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
|
2008-03-02 18:53:23 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | file : $Id$
|
|
|
|
// | last update : $Date$
|
|
|
|
// | last modifier : $Author$
|
|
|
|
// | revision : $Revision$
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | This program is free software; you can redistribute it and/or modify |
|
|
|
|
// | it under the terms of the GNU General Public License as published by |
|
|
|
|
// | the Free Software Foundation |
|
|
|
|
// | |
|
|
|
|
// | This program is distributed in the hope that it will be useful, but |
|
|
|
|
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
|
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
|
// | General Public License for more details. |
|
|
|
|
// | |
|
|
|
|
// | You should have received a copy of the GNU General Public License |
|
|
|
|
// | along with this program; if not, write to the Free Software |
|
|
|
|
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
|
|
|
// | USA. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
if( !defined("PHPWG_ROOT_PATH") )
|
|
|
|
{
|
|
|
|
die ("Hacking attempt!");
|
|
|
|
}
|
|
|
|
|
2008-03-07 11:42:51 +01:00
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/plugins.class.php');
|
2008-03-02 18:53:23 +01:00
|
|
|
|
2008-03-07 11:42:51 +01:00
|
|
|
$template->set_filenames(array('plugins' => 'admin/plugins_list.tpl'));
|
2008-03-06 03:29:29 +01:00
|
|
|
|
2008-03-07 11:42:51 +01:00
|
|
|
$order = isset($_GET['order']) ? $_GET['order'] : 'name';
|
|
|
|
$plugins = new plugins($page['page'], $order);
|
2008-03-06 03:29:29 +01:00
|
|
|
|
2008-03-07 11:42:51 +01:00
|
|
|
//--------------------------------------------------perform requested actions
|
|
|
|
if (isset($_GET['action']) and isset($_GET['plugin']) and !is_adviser())
|
2008-03-06 03:29:29 +01:00
|
|
|
{
|
2008-03-07 11:42:51 +01:00
|
|
|
$page['errors'] =
|
|
|
|
$plugins->perform_action($_GET['action'], $_GET['plugin'], $page['errors']);
|
|
|
|
|
|
|
|
if (empty($page['errors'])) redirect($plugins->my_base_url);
|
2008-03-06 03:29:29 +01:00
|
|
|
}
|
2008-03-02 18:53:23 +01:00
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | start template output |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2008-03-07 11:42:51 +01:00
|
|
|
$plugins->tabsheet();
|
|
|
|
$plugins->sort_fs_plugins();
|
|
|
|
$plugins->set_order_options(array(
|
|
|
|
'name' => l10n('Name'),
|
|
|
|
'status' => l10n('Status'),
|
|
|
|
'author' => l10n('Author'),
|
|
|
|
'id' => 'Id'));
|
|
|
|
|
|
|
|
foreach($plugins->fs_plugins as $plugin_id => $fs_plugin)
|
2008-03-02 18:53:23 +01:00
|
|
|
{
|
|
|
|
$display_name = $fs_plugin['name'];
|
|
|
|
if (!empty($fs_plugin['uri']))
|
|
|
|
{
|
|
|
|
$display_name = '<a href="' . $fs_plugin['uri']
|
|
|
|
. '" onclick="window.open(this.href); return false;">'
|
|
|
|
. $display_name . '</a>';
|
|
|
|
}
|
|
|
|
$desc = $fs_plugin['description'];
|
|
|
|
if (!empty($fs_plugin['author']))
|
|
|
|
{
|
|
|
|
$desc .= ' (<em>';
|
|
|
|
if (!empty($fs_plugin['author uri']))
|
|
|
|
{
|
|
|
|
$desc .= '<a href="' . $fs_plugin['author uri'] . '">'
|
|
|
|
. $fs_plugin['author'] . '</a>';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$desc .= $fs_plugin['author'];
|
|
|
|
}
|
|
|
|
$desc .= '</em>)';
|
|
|
|
}
|
|
|
|
$tpl_plugin =
|
|
|
|
array('NAME' => $display_name,
|
|
|
|
'VERSION' => $fs_plugin['version'],
|
|
|
|
'DESCRIPTION' => $desc);
|
|
|
|
|
2008-03-07 11:42:51 +01:00
|
|
|
$action_url = $plugins->html_base_url . '&plugin=' . $plugin_id;
|
2008-03-02 18:53:23 +01:00
|
|
|
|
2008-03-07 11:42:51 +01:00
|
|
|
if (isset($plugins->db_plugins_by_id[$plugin_id]))
|
|
|
|
{
|
|
|
|
switch ($plugins->db_plugins_by_id[$plugin_id]['state'])
|
2008-03-02 18:53:23 +01:00
|
|
|
{
|
|
|
|
case 'active':
|
2008-03-06 03:29:29 +01:00
|
|
|
$tpl_plugin['actions'][] =
|
2008-03-02 18:53:23 +01:00
|
|
|
array('U_ACTION' => $action_url . '&action=deactivate',
|
|
|
|
'L_ACTION' => l10n('Deactivate'));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'inactive':
|
2008-03-06 03:29:29 +01:00
|
|
|
$tpl_plugin['actions'][] =
|
2008-03-02 18:53:23 +01:00
|
|
|
array('U_ACTION' => $action_url . '&action=activate',
|
|
|
|
'L_ACTION' => l10n('Activate'));
|
2008-03-06 03:29:29 +01:00
|
|
|
$tpl_plugin['actions'][] =
|
2008-03-02 18:53:23 +01:00
|
|
|
array('U_ACTION' => $action_url . '&action=uninstall',
|
|
|
|
'L_ACTION' => l10n('Uninstall'),
|
|
|
|
'CONFIRM' => l10n('Are you sure?'));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-03-06 03:29:29 +01:00
|
|
|
$tpl_plugin['actions'][] =
|
2008-03-02 18:53:23 +01:00
|
|
|
array('U_ACTION' => $action_url . '&action=install',
|
|
|
|
'L_ACTION' => l10n('Install'),
|
|
|
|
'CONFIRM' => l10n('Are you sure?'));
|
2008-03-06 03:29:29 +01:00
|
|
|
$tpl_plugin['actions'][] =
|
2008-03-02 18:53:23 +01:00
|
|
|
array('U_ACTION' => $action_url . '&action=delete',
|
2008-03-07 11:42:51 +01:00
|
|
|
'L_ACTION' => l10n('plugins_delete'),
|
|
|
|
'CONFIRM' => l10n('plugins_confirm_delete'));
|
2008-03-02 18:53:23 +01:00
|
|
|
}
|
|
|
|
$template->append('plugins', $tpl_plugin);
|
|
|
|
}
|
|
|
|
|
|
|
|
$missing_plugin_ids = array_diff(
|
2008-03-07 11:42:51 +01:00
|
|
|
array_keys($plugins->db_plugins_by_id), array_keys($plugins->fs_plugins)
|
2008-03-02 18:53:23 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
foreach($missing_plugin_ids as $plugin_id)
|
|
|
|
{
|
2008-03-07 11:42:51 +01:00
|
|
|
$action_url = $plugins->html_base_url.'&plugin='.$plugin_id;
|
2008-03-02 18:53:23 +01:00
|
|
|
|
|
|
|
$template->append( 'plugins',
|
|
|
|
array(
|
|
|
|
'NAME' => $plugin_id,
|
2008-03-07 11:42:51 +01:00
|
|
|
'VERSION' => $plugins->db_plugins_by_id[$plugin_id]['version'],
|
2008-03-02 18:53:23 +01:00
|
|
|
'DESCRIPTION' => "ERROR: THIS PLUGIN IS MISSING BUT IT IS INSTALLED! UNINSTALL IT NOW !",
|
|
|
|
'actions' => array ( array (
|
|
|
|
'U_ACTION' => $action_url . '&action=uninstall',
|
|
|
|
'L_ACTION' => l10n('Uninstall'),
|
|
|
|
) )
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-03-06 03:29:29 +01:00
|
|
|
$template->assign_var_from_handle('ADMIN_CONTENT', 'plugins');
|
2008-03-02 18:53:23 +01:00
|
|
|
?>
|