source: trunk/admin.php @ 817

Last change on this file since 817 was 817, checked in by plg, 19 years ago
  • modification : major simplification of admin.php. Titles are managed by included page, localized items are managed directly in the template.
  • new : sub template admin/double_select is included in templates admin/cat_options, admin/user_perm and admin/group_perm. I haven't been able to use it in admin/picture_modify because it seems impossible to have two instance of the same sub-template without interfering.
  • modification : bug 99, in profile manager, no auto submit when changing language (useless and generate accessibility problem).
  • improvement : HTML semantically correct for administration menu, simpler syntax, less tags, correct tags (dl/dt/dd instead of div/div).
  • modification : number of waiting elements and unvalidated comments are displayed in admin/intro instead of administration menu (with a link to the dedicated pages).
  • deletion : no link to profile from admin/user_list anymore (no need).
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.9 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2005-08-17 14:25:38 +0000 (Wed, 17 Aug 2005) $
10// | last modifier : $Author: plg $
11// | revision      : $Revision: 817 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28//----------------------------------------------------------- include
29define('PHPWG_ROOT_PATH','./');
30define('IN_ADMIN', true);
31include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
32include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' );
33
34// +-----------------------------------------------------------------------+
35// |                    synchronize user informations                      |
36// +-----------------------------------------------------------------------+
37
38sync_users();
39
40// +-----------------------------------------------------------------------+
41// |                            variables init                             |
42// +-----------------------------------------------------------------------+
43
44if (isset($_GET['page'])
45    and preg_match('/^[a-z_]*$/', $_GET['page'])
46    and is_file(PHPWG_ROOT_PATH.'admin/'.$_GET['page'].'.php'))
47{
48  $page['page'] = $_GET['page'];
49}
50else
51{
52  $page['page'] = 'intro';
53}
54
55$link_start = PHPWG_ROOT_PATH.'admin.php?page=';
56$conf_link = $link_start.'configuration&amp;section=';
57$opt_link = $link_start.'cat_options&amp;section=';
58//----------------------------------------------------- template initialization
59$title = l10n('PhpWebGallery administration'); // for include/page_header.php
60include(PHPWG_ROOT_PATH.'include/page_header.php');
61
62$template->set_filenames(array('admin' => 'admin.tpl'));
63
64$template->assign_vars(
65  array(
66    'U_HISTORY'=>add_session_id($link_start.'stats' ),
67    'U_FAQ'=>add_session_id($link_start.'help' ),
68    'U_SITES'=>add_session_id($link_start.'remote_site'),
69    'U_MAINTENANCE'=>add_session_id($link_start.'maintenance'),
70    'U_CONFIG_GENERAL'=>add_session_id($conf_link.'general' ),
71    'U_CONFIG_COMMENTS'=>add_session_id($conf_link.'comments' ),
72    'U_CONFIG_DISPLAY'=>add_session_id($conf_link.'default' ),
73    'U_CONFIG_UPLOAD'=>add_session_id($conf_link.'upload' ),
74    'U_CONFIG_SESSION'=>add_session_id($conf_link.'session' ),
75    'U_CONFIG_METADATA'=>add_session_id($conf_link.'metadata' ),
76    'U_CATEGORIES'=>add_session_id($link_start.'cat_list' ),
77    'U_CAT_UPLOAD'=>add_session_id($opt_link.'upload'),
78    'U_CAT_COMMENTS'=>add_session_id($opt_link.'comments'),
79    'U_CAT_VISIBLE'=>add_session_id($opt_link.'visible'),
80    'U_CAT_STATUS'=>add_session_id($opt_link.'status'),
81    'U_CAT_OPTIONS'=>add_session_id($link_start.'cat_options'),
82    'U_CAT_UPDATE'=>add_session_id($link_start.'update'),
83    'U_WAITING'=>add_session_id($link_start.'waiting' ),
84    'U_COMMENTS'=>add_session_id($link_start.'comments' ),
85    'U_CADDIE'=>add_session_id($link_start.'element_set&amp;cat=caddie'),
86    'U_THUMBNAILS'=>add_session_id($link_start.'thumbnail' ),
87    'U_USERS'=>add_session_id($link_start.'user_list' ),
88    'U_GROUPS'=>add_session_id($link_start.'group_list' ),
89    'U_RETURN'=>add_session_id(PHPWG_ROOT_PATH.'category.php')
90    )
91  );
92
93if ($conf['allow_random_representative'])
94{
95  $template->assign_block_vars(
96    'representative',
97    array(
98      'URL' => add_session_id($opt_link.'representative')
99      )
100    );
101}
102 
103//------------------------------------------------------------- content display
104$page['errors'] = array();
105$page['infos']  = array();
106
107include(PHPWG_ROOT_PATH.'admin/'.$page['page'].'.php');
108
109// +-----------------------------------------------------------------------+
110// |                            errors & infos                             |
111// +-----------------------------------------------------------------------+
112
113if (count($page['errors']) != 0)
114{
115  $template->assign_block_vars('errors',array());
116  foreach ($page['errors'] as $error)
117  {
118    $template->assign_block_vars('errors.error',array('ERROR'=>$error));
119  }
120}
121
122if (count($page['infos']) != 0)
123{
124  $template->assign_block_vars('infos',array());
125  foreach ($page['infos'] as $info)
126  {
127    $template->assign_block_vars('infos.info',array('INFO'=>$info));
128  }
129}
130
131$template->parse('admin');
132include(PHPWG_ROOT_PATH.'include/page_tail.php');
133
134// +-----------------------------------------------------------------------+
135// |                     order permission refreshment                      |
136// +-----------------------------------------------------------------------+
137
138$query = '
139UPDATE '.USER_CACHE_TABLE.'
140  SET need_update = \'true\'
141;';
142pwg_query($query);
143?>
Note: See TracBrowser for help on using the repository browser.