source: extensions/PersoAbout/admin.php @ 31470

Last change on this file since 31470 was 31470, checked in by ddtddt, 8 years ago

[extensions] - PersoAbout - 2.8

File size: 3.3 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Perso About plugin for piwigo                                         |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2010 - 2016 ddtddt             http://temmii.com/piwigo/ |
6// +-----------------------------------------------------------------------+
7// | This program is free software; you can redistribute it and/or modify  |
8// | it under the terms of the GNU General Public License as published by  |
9// | the Free Software Foundation                                          |
10// |                                                                       |
11// | This program is distributed in the hope that it will be useful, but   |
12// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
13// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
14// | General Public License for more details.                              |
15// |                                                                       |
16// | You should have received a copy of the GNU General Public License     |
17// | along with this program; if not, write to the Free Software           |
18// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
19// | USA.                                                                  |
20// +-----------------------------------------------------------------------+
21
22if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
23global $template, $conf, $user;
24include_once(PHPWG_ROOT_PATH .'admin/include/tabsheet.class.php');
25load_language('plugin.lang', PPA_PATH);
26$my_base_url = PHPWG_ROOT_PATH.'admin.php?page=plugin-';
27
28// +-----------------------------------------------------------------------+
29// | Check Access and exit when user status is not ok                      |
30// +-----------------------------------------------------------------------+
31check_status(ACCESS_ADMINISTRATOR);
32
33//-------------------------------------------------------- sections definitions
34if (!is_webmaster()){
35  array_push($page['errors'], l10n('This section is reserved for the webmaster'));
36} else{
37
38// Gestion des onglets
39if (!isset($_GET['tab']))
40    $page['tab'] = 'gest';
41else
42    $page['tab'] = $_GET['tab'];
43
44$tabsheet = new tabsheet();
45  $tabsheet->add('gest', l10n('ppa_tab_gest'), PPA_ADMIN . '-gest');
46  $tabsheet->add('help', l10n('ppa_tab_help'), PPA_ADMIN . '-help');
47$tabsheet->select($page['tab']);
48$tabsheet->assign();
49
50// Onglet gest
51switch ($page['tab'])
52{
53  case 'gest':
54$template->assign(
55  'gestA',
56    array('PPABASE' => $conf['persoAbout'],));
57$PAED = pwg_db_fetch_assoc(pwg_query("SELECT state FROM " . PLUGINS_TABLE . " WHERE id = 'ExtendedDescription';"));
58  if($PAED['state'] == 'active'){
59        $template->assign('useED',1);
60  }else{
61    $template->assign('useED',0);
62  }
63if (isset($_POST['submitppa'])){
64  conf_update_param('persoAbout', $_POST['perso_about']);
65  $template->assign(
66    'gestA',
67    array('PPABASE' => stripslashes($_POST['perso_about']),));
68}
69  break;
70
71// Tab help
72  case 'help':
73$template->assign(
74  'gestB',
75        array('meta'=>l10n('null'),));
76  break;
77       
78} 
79
80$template->set_filenames(array('plugin_admin_content' => dirname(__FILE__) . '/admin.tpl')); 
81$template->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content');
82}
83?>
Note: See TracBrowser for help on using the repository browser.