source: branches/2.2/admin/plugins_new.php @ 11040

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

feature:2219
Sort available plugins without reloading the whole page

  • Property svn:eol-style set to LF
File size: 5.1 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_new.tpl'));
32
33$base_url = get_root_url().'admin.php?page='.$page['page'];
34
35$plugins = new plugins();
36
37//------------------------------------------------------automatic installation
38if (isset($_GET['revision']) and isset($_GET['extension']))
39{
40  if (!is_webmaster())
41  {
42    array_push($page['errors'], l10n('Webmaster status is required.'));
43  }
44  else
45  {
46    check_pwg_token();
47   
48    $install_status = $plugins->extract_plugin_files('install', $_GET['revision'], $_GET['extension']);
49
50    redirect($base_url.'&installstatus='.$install_status);
51  }
52}
53
54//--------------------------------------------------------------install result
55if (isset($_GET['installstatus']))
56{
57  switch ($_GET['installstatus'])
58  {
59    case 'ok':
60      array_push($page['infos'],
61        l10n('Plugin has been successfully copied'),
62        l10n('You might go to plugin list to install and activate it.'));
63      break;
64
65    case 'temp_path_error':
66      array_push($page['errors'], l10n('Can\'t create temporary file.'));
67      break;
68
69    case 'dl_archive_error':
70      array_push($page['errors'], l10n('Can\'t download archive.'));
71      break;
72
73    case 'archive_error':
74      array_push($page['errors'], l10n('Can\'t read or extract archive.'));
75      break;
76
77    default:
78      array_push($page['errors'],
79        sprintf(l10n('An error occured during extraction (%s).'), $_GET['installstatus']),
80        l10n('Please check "plugins" folder and sub-folders permissions (CHMOD).'));
81  } 
82}
83
84//--------------------------------------------------------------------Tabsheet
85$plugins->set_tabsheet($page['page']);
86
87//---------------------------------------------------------------Order options
88$template->assign('order_options',
89  array(
90    'date' => l10n('Post date'),
91    'revision' => l10n('Last revisions'),
92    'name' => l10n('Name'),
93    'author' => l10n('Author'),
94    'downloads' => l10n('Number of downloads')));
95
96// +-----------------------------------------------------------------------+
97// |                     start template output                             |
98// +-----------------------------------------------------------------------+
99if ($plugins->get_server_plugins(true))
100{
101  $plugins->sort_server_plugins('date');
102
103  foreach($plugins->server_plugins as $plugin)
104  {
105    $ext_desc = trim($plugin['extension_description'], " \n\r");
106    list($small_desc) = explode("\n", wordwrap($ext_desc, 200));
107
108    $url_auto_install = htmlentities($base_url)
109      . '&amp;revision=' . $plugin['revision_id']
110      . '&amp;extension=' . $plugin['extension_id']
111      . '&amp;pwg_token='.get_pwg_token()
112    ;
113
114    $template->append('plugins', array(
115      'ID' => $plugin['extension_id'],
116      'EXT_NAME' => $plugin['extension_name'],
117      'EXT_URL' => PEM_URL.'/extension_view.php?eid='.$plugin['extension_id'],
118      'SMALL_DESC' => trim($small_desc, " \r\n"),
119      'BIG_DESC' => $ext_desc,
120      'VERSION' => $plugin['revision_name'],
121      'REVISION_DATE' => preg_replace('/[^0-9]/', '', $plugin['revision_date']),
122      'AUTHOR' => $plugin['author_name'],
123      'DOWNLOADS' => $plugin['extension_nb_downloads'],
124      'URL_INSTALL' => $url_auto_install,
125      'URL_DOWNLOAD' => $plugin['download_url'] . '&amp;origin=piwigo_download'));
126  }
127}
128else
129{
130  array_push($page['errors'], l10n('Can\'t connect to server.'));
131}
132
133$template->assign_var_from_handle('ADMIN_CONTENT', 'plugins');
134?>
Note: See TracBrowser for help on using the repository browser.