source: branches/2.2/admin/plugins_list.php @ 11043

Last change on this file since 11043 was 11043, checked in by patdenice, 13 years ago

feature:2250
Add obsolete_extensions.list file in install directory.
Incompatible plugins is checked through ajax.

  • Property svn:eol-style set to LF
File size: 5.6 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2011 Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24if( !defined("PHPWG_ROOT_PATH") )
25{
26  die ("Hacking attempt!");
27}
28
29include_once(PHPWG_ROOT_PATH.'admin/include/plugins.class.php');
30
31$template->set_filenames(array('plugins' => 'plugins_list.tpl'));
32
33$base_url = get_root_url().'admin.php?page='.$page['page'];
34$action_url = $base_url.'&amp;plugin='.'%s'.'&amp;pwg_token='.get_pwg_token();
35
36$plugins = new plugins();
37
38//--------------------------------------------------perform requested actions
39if (isset($_GET['action']) and isset($_GET['plugin']))
40{
41  if (in_array($_GET['action'], array('install', 'uninstall')) AND !is_webmaster())
42  {
43    array_push($page['errors'], l10n('Webmaster status is required.'));
44  }
45  else
46  {
47    check_pwg_token();
48
49    $page['errors'] = $plugins->perform_action($_GET['action'], $_GET['plugin']);
50
51    if (empty($page['errors']))
52    {
53      if ($_GET['action'] == 'activate' or $_GET['action'] == 'deactivate')
54      {
55        $template->delete_compiled_templates();
56      }
57      redirect($base_url);
58    }
59  }
60}
61
62//--------------------------------------------------------------------Tabsheet
63$plugins->set_tabsheet($page['page']);
64
65//--------------------------------------------------------Incompatible Plugins
66if (isset($_GET['incompatible_plugins']))
67{
68  $incompatible_plugins = array();
69  foreach ($plugins->get_incompatible_plugins() as $plugin => $version)
70  {
71    if ($plugin == '~~expire~~') continue;
72    array_push($incompatible_plugins, $plugin);
73   
74  }
75  echo json_encode($incompatible_plugins);
76  exit;
77}
78
79// +-----------------------------------------------------------------------+
80// |                     start template output                             |
81// +-----------------------------------------------------------------------+
82
83$plugins->sort_fs_plugins('name');
84$merged_extensions = $plugins->get_merged_extensions();
85$incompatible_plugins = $plugins->get_incompatible_plugins();
86$merged_plugins = false;
87
88foreach($plugins->fs_plugins as $plugin_id => $fs_plugin)
89{
90  if (isset($incompatible_plugins[$plugin_id])
91    and $fs_plugin['version'] != $incompatible_plugins[$plugin_id])
92  {
93    // Incompatible plugins must be reinitilized
94    unset($_SESSION['incompatible_plugins']);
95  }
96
97  $tpl_plugin = array(
98    'ID' => $plugin_id,
99    'NAME' => $fs_plugin['name'],
100    'VISIT_URL' => $fs_plugin['uri'],
101    'VERSION' => $fs_plugin['version'],
102    'DESC' => $fs_plugin['description'],
103    'AUTHOR' => $fs_plugin['author'],
104    'AUTHOR_URL' => @$fs_plugin['author uri'],
105    'U_ACTION' => sprintf($action_url, $plugin_id),
106    );
107
108  if (isset($plugins->db_plugins_by_id[$plugin_id]))
109  {
110    $tpl_plugin['STATE'] = $plugins->db_plugins_by_id[$plugin_id]['state'];
111  }
112  else
113  {
114    $tpl_plugin['STATE'] = 'uninstalled';
115  }
116
117  if (isset($fs_plugin['extension']) and isset($merged_extensions[$fs_plugin['extension']]))
118  {
119    switch($tpl_plugin['STATE'])
120    {
121      case 'active': $plugins->perform_action('deactivate', $plugin_id);
122      case 'inactive': $plugins->perform_action('uninstall', $plugin_id);
123    }
124    $tpl_plugin['STATE'] = 'merged';
125    $tpl_plugin['DESC'] = l10n('THIS PLUGIN IS NOW PART OF PIWIGO CORE! DELETE IT NOW.');
126    $merged_plugins = true;
127  }
128
129  $template->append('plugins', $tpl_plugin);
130}
131
132$template->append('plugin_states', 'active');
133$template->append('plugin_states', 'inactive');
134$template->append('plugin_states', 'uninstalled');
135
136if ($merged_plugins)
137{
138  $template->append('plugin_states', 'merged');
139}
140
141$missing_plugin_ids = array_diff(
142  array_keys($plugins->db_plugins_by_id),
143  array_keys($plugins->fs_plugins)
144  );
145
146if (count($missing_plugin_ids) > 0)
147{
148  foreach($missing_plugin_ids as $plugin_id)
149  {
150    $template->append(
151      'plugins',
152      array(
153        'NAME' => $plugin_id,
154        'VERSION' => $plugins->db_plugins_by_id[$plugin_id]['version'],
155        'DESC' => l10n('ERROR: THIS PLUGIN IS MISSING BUT IT IS INSTALLED! UNINSTALL IT NOW.'),
156        'U_ACTION' => sprintf($action_url, $plugin_id),
157        'STATE' => 'missing',
158        )
159      );
160  }
161  $template->append('plugin_states', 'missing');
162}
163
164$template->assign_var_from_handle('ADMIN_CONTENT', 'plugins');
165?>
Note: See TracBrowser for help on using the repository browser.