2003-11-02 11:22:14 +01:00
|
|
|
<?php
|
2004-02-07 20:36:44 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
2004-11-06 22:12:59 +01:00
|
|
|
// | PhpWebGallery - a PHP based picture gallery |
|
|
|
|
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
|
2005-01-08 00:10:51 +01:00
|
|
|
// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
|
2004-02-07 20:36:44 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
2004-11-06 22:12:59 +01:00
|
|
|
// | branch : BSF (Best So Far)
|
2004-02-07 20:36:44 +01:00
|
|
|
// | file : $RCSfile$
|
|
|
|
// | last update : $Date$
|
|
|
|
// | last modifier : $Author$
|
|
|
|
// | revision : $Revision$
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | This program is free software; you can redistribute it and/or modify |
|
|
|
|
// | it under the terms of the GNU General Public License as published by |
|
|
|
|
// | the Free Software Foundation |
|
|
|
|
// | |
|
|
|
|
// | This program is distributed in the hope that it will be useful, but |
|
|
|
|
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
|
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
|
// | General Public License for more details. |
|
|
|
|
// | |
|
|
|
|
// | You should have received a copy of the GNU General Public License |
|
|
|
|
// | along with this program; if not, write to the Free Software |
|
|
|
|
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
|
|
|
// | USA. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2003-11-02 11:22:14 +01:00
|
|
|
|
2004-02-02 01:55:18 +01:00
|
|
|
//----------------------------------------------------------- include
|
2004-02-19 01:31:09 +01:00
|
|
|
define('PHPWG_ROOT_PATH','./');
|
2004-03-20 01:52:37 +01:00
|
|
|
define('IN_ADMIN', true);
|
2004-02-19 01:31:09 +01:00
|
|
|
include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
|
2004-03-20 01:52:37 +01:00
|
|
|
include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' );
|
2005-08-08 22:52:19 +02:00
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | synchronize user informations |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
sync_users();
|
|
|
|
|
2005-08-17 16:25:38 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | variables init |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2004-03-20 01:52:37 +01:00
|
|
|
|
2005-08-17 16:25:38 +02:00
|
|
|
if (isset($_GET['page'])
|
|
|
|
and preg_match('/^[a-z_]*$/', $_GET['page'])
|
|
|
|
and is_file(PHPWG_ROOT_PATH.'admin/'.$_GET['page'].'.php'))
|
2003-11-02 11:22:14 +01:00
|
|
|
{
|
2005-08-17 16:25:38 +02:00
|
|
|
$page['page'] = $_GET['page'];
|
2003-11-02 11:22:14 +01:00
|
|
|
}
|
2005-08-17 16:25:38 +02:00
|
|
|
else
|
2003-11-02 11:22:14 +01:00
|
|
|
{
|
2005-08-17 16:25:38 +02:00
|
|
|
$page['page'] = 'intro';
|
2003-11-02 11:22:14 +01:00
|
|
|
}
|
2004-03-20 01:52:37 +01:00
|
|
|
|
|
|
|
$link_start = PHPWG_ROOT_PATH.'admin.php?page=';
|
2004-11-13 14:43:53 +01:00
|
|
|
$conf_link = $link_start.'configuration&section=';
|
2004-11-23 23:31:24 +01:00
|
|
|
$opt_link = $link_start.'cat_options&section=';
|
2004-03-20 01:52:37 +01:00
|
|
|
//----------------------------------------------------- template initialization
|
2005-08-17 16:25:38 +02:00
|
|
|
$title = l10n('PhpWebGallery administration'); // for include/page_header.php
|
- new : HTML BODY identifier to let CSS stylesheets manage specific
behaviour.
- deletion : admin/search useless
- improvement : in admin/user_list, special behaviour for true/false fields
(expand, show_comments)
- new : gallery_title and gallery_description are displayed at the top of
each page.
- improvement : simplification in HTML for categories menu.
- improvement : standardization of presentation in all public pages
(identification, registration, search, profile, notification, comments,
etc.)
(not in ChangeLog, below this line)
- add forgotten notification.php (should have been added in a previous
commit)
- [template cclear] deletion of useless class .bouton
- [template cclear] for test purpose, new presentation of register page
(using FORM.filter)
- [template cclear] adaptation of admin/group_list from template default
- [template cclear] deletion of obsolete admin/infos_images
- [template cclear] deletion of obsolete admin/search_username
- [template cclear] new icon register.png
git-svn-id: http://piwigo.org/svn/trunk@850 68402e56-0260-453c-a942-63ccdbb3a9ee
2005-08-26 00:43:47 +02:00
|
|
|
$page['gallery_title'] = l10n('PhpWebGallery Administration');
|
|
|
|
$page['body_id'] = 'theAdminPage';
|
2004-03-20 01:52:37 +01:00
|
|
|
include(PHPWG_ROOT_PATH.'include/page_header.php');
|
|
|
|
|
2005-08-17 16:25:38 +02:00
|
|
|
$template->set_filenames(array('admin' => 'admin.tpl'));
|
2004-11-23 23:31:24 +01:00
|
|
|
|
2005-08-17 16:25:38 +02:00
|
|
|
$template->assign_vars(
|
|
|
|
array(
|
|
|
|
'U_HISTORY'=>add_session_id($link_start.'stats' ),
|
|
|
|
'U_FAQ'=>add_session_id($link_start.'help' ),
|
|
|
|
'U_SITES'=>add_session_id($link_start.'remote_site'),
|
|
|
|
'U_MAINTENANCE'=>add_session_id($link_start.'maintenance'),
|
|
|
|
'U_CONFIG_GENERAL'=>add_session_id($conf_link.'general' ),
|
|
|
|
'U_CONFIG_COMMENTS'=>add_session_id($conf_link.'comments' ),
|
|
|
|
'U_CONFIG_DISPLAY'=>add_session_id($conf_link.'default' ),
|
|
|
|
'U_CATEGORIES'=>add_session_id($link_start.'cat_list' ),
|
|
|
|
'U_CAT_UPLOAD'=>add_session_id($opt_link.'upload'),
|
|
|
|
'U_CAT_COMMENTS'=>add_session_id($opt_link.'comments'),
|
|
|
|
'U_CAT_VISIBLE'=>add_session_id($opt_link.'visible'),
|
|
|
|
'U_CAT_STATUS'=>add_session_id($opt_link.'status'),
|
|
|
|
'U_CAT_OPTIONS'=>add_session_id($link_start.'cat_options'),
|
|
|
|
'U_CAT_UPDATE'=>add_session_id($link_start.'update'),
|
|
|
|
'U_WAITING'=>add_session_id($link_start.'waiting' ),
|
|
|
|
'U_COMMENTS'=>add_session_id($link_start.'comments' ),
|
|
|
|
'U_CADDIE'=>add_session_id($link_start.'element_set&cat=caddie'),
|
|
|
|
'U_THUMBNAILS'=>add_session_id($link_start.'thumbnail' ),
|
|
|
|
'U_USERS'=>add_session_id($link_start.'user_list' ),
|
|
|
|
'U_GROUPS'=>add_session_id($link_start.'group_list' ),
|
|
|
|
'U_RETURN'=>add_session_id(PHPWG_ROOT_PATH.'category.php')
|
|
|
|
)
|
|
|
|
);
|
2004-03-20 01:52:37 +01:00
|
|
|
|
2005-08-14 01:09:54 +02:00
|
|
|
if ($conf['allow_random_representative'])
|
|
|
|
{
|
|
|
|
$template->assign_block_vars(
|
|
|
|
'representative',
|
|
|
|
array(
|
|
|
|
'URL' => add_session_id($opt_link.'representative')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2003-11-02 11:22:14 +01:00
|
|
|
//------------------------------------------------------------- content display
|
2005-06-11 16:10:04 +02:00
|
|
|
$page['errors'] = array();
|
2005-08-17 16:25:38 +02:00
|
|
|
$page['infos'] = array();
|
|
|
|
|
|
|
|
include(PHPWG_ROOT_PATH.'admin/'.$page['page'].'.php');
|
2005-06-11 16:10:04 +02:00
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | errors & infos |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2005-08-17 16:25:38 +02:00
|
|
|
|
2005-06-11 16:10:04 +02:00
|
|
|
if (count($page['errors']) != 0)
|
|
|
|
{
|
|
|
|
$template->assign_block_vars('errors',array());
|
|
|
|
foreach ($page['errors'] as $error)
|
|
|
|
{
|
|
|
|
$template->assign_block_vars('errors.error',array('ERROR'=>$error));
|
|
|
|
}
|
|
|
|
}
|
2005-08-17 16:25:38 +02:00
|
|
|
|
2005-06-11 16:10:04 +02:00
|
|
|
if (count($page['infos']) != 0)
|
|
|
|
{
|
|
|
|
$template->assign_block_vars('infos',array());
|
|
|
|
foreach ($page['infos'] as $info)
|
|
|
|
{
|
|
|
|
$template->assign_block_vars('infos.info',array('INFO'=>$info));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-13 11:18:49 +01:00
|
|
|
$template->parse('admin');
|
2004-03-20 01:52:37 +01:00
|
|
|
include(PHPWG_ROOT_PATH.'include/page_tail.php');
|
2005-08-17 16:25:38 +02:00
|
|
|
|
2004-12-25 20:33:36 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | order permission refreshment |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2005-08-17 16:25:38 +02:00
|
|
|
|
2004-12-25 20:33:36 +01:00
|
|
|
$query = '
|
2005-08-08 22:52:19 +02:00
|
|
|
UPDATE '.USER_CACHE_TABLE.'
|
2004-12-25 20:33:36 +01:00
|
|
|
SET need_update = \'true\'
|
|
|
|
;';
|
|
|
|
pwg_query($query);
|
2004-02-12 00:20:38 +01:00
|
|
|
?>
|