source: trunk/admin/plugins_new.php @ 29220

Last change on this file since 29220 was 26909, checked in by mistic100, 10 years ago

Display "Activate it now" link when installing a new plugin

  • Property svn:eol-style set to LF
File size: 5.5 KB
RevLine 
[2242]1<?php
2// +-----------------------------------------------------------------------+
[8728]3// | Piwigo - a PHP based photo gallery                                    |
[2297]4// +-----------------------------------------------------------------------+
[26461]5// | Copyright(C) 2008-2014 Piwigo Team                  http://piwigo.org |
[2297]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// +-----------------------------------------------------------------------+
[2242]23
24if( !defined("PHPWG_ROOT_PATH") )
25{
26  die ("Hacking attempt!");
27}
28
[2263]29include_once(PHPWG_ROOT_PATH.'admin/include/plugins.class.php');
[2255]30
[2530]31$template->set_filenames(array('plugins' => 'plugins_new.tpl'));
[2255]32
[10638]33$base_url = get_root_url().'admin.php?page='.$page['page'].'&tab='.$page['tab'];
[2255]34
[2264]35$plugins = new plugins();
[2242]36
37//------------------------------------------------------automatic installation
[5406]38if (isset($_GET['revision']) and isset($_GET['extension']))
[2242]39{
[5406]40  if (!is_webmaster())
41  {
[25018]42    $page['errors'][] = l10n('Webmaster status is required.');
[5406]43  }
44  else
45  {
46    check_pwg_token();
47   
[26909]48    $install_status = $plugins->extract_plugin_files('install', $_GET['revision'], $_GET['extension'], $plugin_id);
[2264]49
[26909]50    redirect($base_url.'&installstatus='.$install_status.'&plugin_id='.$plugin_id);
[5406]51  }
[2242]52}
53
54//--------------------------------------------------------------install result
55if (isset($_GET['installstatus']))
56{
[2264]57  switch ($_GET['installstatus'])
58  {
59    case 'ok':
[26909]60      $activate_url = get_root_url().'admin.php?page=plugins'
61        . '&amp;plugin=' . $_GET['plugin_id']
62        . '&amp;pwg_token=' . get_pwg_token()
63        . '&amp;action=activate';
64
[25018]65      $page['infos'][] = l10n('Plugin has been successfully copied');
[26909]66      $page['infos'][] = '<a href="'. $activate_url . '">' . l10n('Activate it now') . '</a>';
[2264]67      break;
68
69    case 'temp_path_error':
[25018]70      $page['errors'][] = l10n('Can\'t create temporary file.');
[2264]71      break;
72
73    case 'dl_archive_error':
[25018]74      $page['errors'][] = l10n('Can\'t download archive.');
[2264]75      break;
76
77    case 'archive_error':
[25018]78      $page['errors'][] = l10n('Can\'t read or extract archive.');
[2264]79      break;
80
81    default:
[25018]82      $page['errors'][] = l10n('An error occured during extraction (%s).', htmlspecialchars($_GET['installstatus']));
83      $page['errors'][] = l10n('Please check "plugins" folder and sub-folders permissions (CHMOD).');
[2264]84  } 
[2242]85}
86
[2264]87//---------------------------------------------------------------Order options
88$template->assign('order_options',
89  array(
[9598]90    'date' => l10n('Post date'),
91    'revision' => l10n('Last revisions'),
92    'name' => l10n('Name'),
93    'author' => l10n('Author'),
94    'downloads' => l10n('Number of downloads')));
[2264]95
[2242]96// +-----------------------------------------------------------------------+
97// |                     start template output                             |
98// +-----------------------------------------------------------------------+
[2880]99if ($plugins->get_server_plugins(true))
[2242]100{
[11222]101  /* order plugins */
102  if (pwg_get_session_var('plugins_new_order') != null)
103  {
104    $order_selected = pwg_get_session_var('plugins_new_order');
105    $plugins->sort_server_plugins($order_selected);
106    $template->assign('order_selected', $order_selected);
107  }
108  else
109  {
110    $plugins->sort_server_plugins('date');
111    $template->assign('order_selected', 'date');
112  }
[2272]113
[2263]114  foreach($plugins->server_plugins as $plugin)
[2243]115  {
[5515]116    $ext_desc = trim($plugin['extension_description'], " \n\r");
117    list($small_desc) = explode("\n", wordwrap($ext_desc, 200));
[2647]118
[2264]119    $url_auto_install = htmlentities($base_url)
[2647]120      . '&amp;revision=' . $plugin['revision_id']
[5195]121      . '&amp;extension=' . $plugin['extension_id']
122      . '&amp;pwg_token='.get_pwg_token()
123    ;
[2245]124
[2647]125    $template->append('plugins', array(
[5515]126      'ID' => $plugin['extension_id'],
[2647]127      'EXT_NAME' => $plugin['extension_name'],
128      'EXT_URL' => PEM_URL.'/extension_view.php?eid='.$plugin['extension_id'],
[5515]129      'SMALL_DESC' => trim($small_desc, " \r\n"),
130      'BIG_DESC' => $ext_desc,
[2647]131      'VERSION' => $plugin['revision_name'],
[9598]132      'REVISION_DATE' => preg_replace('/[^0-9]/', '', $plugin['revision_date']),
[2647]133      'AUTHOR' => $plugin['author_name'],
[5516]134      'DOWNLOADS' => $plugin['extension_nb_downloads'],
[2647]135      'URL_INSTALL' => $url_auto_install,
136      'URL_DOWNLOAD' => $plugin['download_url'] . '&amp;origin=piwigo_download'));
[2243]137  }
[2242]138}
139else
140{
[25018]141  $page['errors'][] = l10n('Can\'t connect to server.');
[2242]142}
143
[2255]144$template->assign_var_from_handle('ADMIN_CONTENT', 'plugins');
[2242]145?>
Note: See TracBrowser for help on using the repository browser.