2003-11-02 10:22:14 +00:00
|
|
|
<?php
|
2004-02-07 19:36:44 +00:00
|
|
|
// +-----------------------------------------------------------------------+
|
2008-04-04 22:57:23 +00:00
|
|
|
// | Piwigo - a PHP based picture gallery |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2009-01-04 23:28:36 +00:00
|
|
|
// | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org |
|
2008-04-04 22:57:23 +00:00
|
|
|
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
|
|
|
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | This program is free software; you can redistribute it and/or modify |
|
2004-02-07 19:36:44 +00:00
|
|
|
// | 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 10:22:14 +00:00
|
|
|
|
2004-02-02 00:55:18 +00:00
|
|
|
//----------------------------------------------------------- include
|
2004-02-19 00:31:09 +00:00
|
|
|
define('PHPWG_ROOT_PATH','./');
|
2004-03-20 00:52:37 +00:00
|
|
|
define('IN_ADMIN', true);
|
2004-02-19 00:31:09 +00:00
|
|
|
include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
|
2006-03-09 22:46:28 +00:00
|
|
|
|
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
2006-12-14 00:58:57 +00:00
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions_plugins.inc.php');
|
2006-03-09 22:46:28 +00:00
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Check Access and exit when user status is not ok |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
check_status(ACCESS_ADMINISTRATOR);
|
2005-08-08 20:52:19 +00:00
|
|
|
|
2010-03-06 22:10:23 +00:00
|
|
|
// tags
|
|
|
|
if (isset($_GET['fckb_tags']))
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT
|
|
|
|
id,
|
|
|
|
name
|
|
|
|
FROM '.TAGS_TABLE.'
|
|
|
|
;';
|
|
|
|
$result = pwg_query($query);
|
|
|
|
$taglist = array();
|
|
|
|
while ($row = pwg_db_fetch_assoc($result))
|
|
|
|
{
|
|
|
|
array_push(
|
|
|
|
$taglist,
|
|
|
|
array(
|
|
|
|
'caption' => $row['name'],
|
|
|
|
'value' => '~~'.$row['id'].'~~',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
echo json_encode($taglist);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2010-03-09 23:19:11 +00:00
|
|
|
// theme changer
|
|
|
|
if (isset($_GET['change_theme']))
|
|
|
|
{
|
|
|
|
$admin_themes = array('goto/roma', 'goto/clear');
|
|
|
|
|
|
|
|
$new_admin_theme = array_pop(
|
|
|
|
array_diff(
|
|
|
|
$admin_themes,
|
|
|
|
array($conf['admin_layout'])
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$query = '
|
|
|
|
DELETE
|
|
|
|
FROM '.CONFIG_TABLE.'
|
|
|
|
WHERE param = "admin_layout"
|
|
|
|
;';
|
|
|
|
pwg_query($query);
|
|
|
|
|
|
|
|
$query = '
|
|
|
|
INSERT
|
|
|
|
INTO '.CONFIG_TABLE.'
|
|
|
|
SET param = "admin_layout"
|
|
|
|
, value = "'.$new_admin_theme.'"
|
|
|
|
;';
|
|
|
|
pwg_query($query);
|
|
|
|
|
|
|
|
redirect('admin.php');
|
|
|
|
}
|
|
|
|
|
2005-08-08 20:52:19 +00:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | synchronize user informations |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
sync_users();
|
|
|
|
|
2005-08-17 14:25:38 +00:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | variables init |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2004-03-20 00:52:37 +00:00
|
|
|
|
2007-01-09 11:38:54 +00:00
|
|
|
if (isset($_GET['page'])
|
2005-08-17 14:25:38 +00:00
|
|
|
and preg_match('/^[a-z_]*$/', $_GET['page'])
|
2007-01-09 11:38:54 +00:00
|
|
|
and is_file(PHPWG_ROOT_PATH.'admin/'.$_GET['page'].'.php'))
|
2003-11-02 10:22:14 +00:00
|
|
|
{
|
2007-01-09 11:38:54 +00:00
|
|
|
$page['page'] = $_GET['page'];
|
2003-11-02 10:22:14 +00:00
|
|
|
}
|
2007-01-09 11:38:54 +00:00
|
|
|
else
|
2003-11-02 10:22:14 +00:00
|
|
|
{
|
2007-01-09 11:38:54 +00:00
|
|
|
$page['page'] = 'intro';
|
2003-11-02 10:22:14 +00:00
|
|
|
}
|
2004-03-20 00:52:37 +00:00
|
|
|
|
2006-12-14 00:58:57 +00:00
|
|
|
$page['errors'] = array();
|
|
|
|
$page['infos'] = array();
|
|
|
|
|
2004-03-20 00:52:37 +00:00
|
|
|
$link_start = PHPWG_ROOT_PATH.'admin.php?page=';
|
2004-11-13 13:43:53 +00:00
|
|
|
$conf_link = $link_start.'configuration&section=';
|
2004-03-20 00:52:37 +00:00
|
|
|
//----------------------------------------------------- template initialization
|
2008-05-15 18:43:33 +00:00
|
|
|
$title = l10n('Piwigo Administration'); // for include/page_header.php
|
|
|
|
$page['page_banner'] = '<h1>'.l10n('Piwigo Administration').'</h1>';
|
- 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-25 22:43:47 +00:00
|
|
|
$page['body_id'] = 'theAdminPage';
|
2004-03-20 00:52:37 +00:00
|
|
|
|
2005-08-17 14:25:38 +00:00
|
|
|
$template->set_filenames(array('admin' => 'admin.tpl'));
|
2004-11-23 22:31:24 +00:00
|
|
|
|
2008-02-27 02:31:51 +00:00
|
|
|
$template->assign(
|
2005-08-17 14:25:38 +00:00
|
|
|
array(
|
2010-03-09 23:19:11 +00:00
|
|
|
'USERNAME' => $user['username'],
|
2006-02-08 01:17:07 +00:00
|
|
|
'U_SITE_MANAGER'=> $link_start.'site_manager',
|
2007-01-16 23:39:39 +00:00
|
|
|
'U_HISTORY_STAT'=> $link_start.'stats',
|
2006-01-15 13:45:42 +00:00
|
|
|
'U_FAQ'=> $link_start.'help',
|
|
|
|
'U_SITES'=> $link_start.'remote_site',
|
|
|
|
'U_MAINTENANCE'=> $link_start.'maintenance',
|
2006-03-21 22:58:59 +00:00
|
|
|
'U_NOTIFICATION_BY_MAIL'=> $link_start.'notification_by_mail',
|
2006-12-14 21:37:51 +00:00
|
|
|
'U_ADVANCED_FEATURE'=> $link_start.'advanced_feature',
|
2007-03-11 23:02:13 +00:00
|
|
|
'U_CONFIG_GENERAL'=> $link_start.'configuration',
|
2006-01-15 13:45:42 +00:00
|
|
|
'U_CONFIG_DISPLAY'=> $conf_link.'default',
|
2008-07-14 21:42:40 +00:00
|
|
|
'U_CONFIG_EXTENTS'=> $link_start.'extend_for_templates',
|
2008-08-28 00:32:39 +00:00
|
|
|
'U_CONFIG_MENUBAR'=> $link_start.'menubar',
|
2006-01-15 13:45:42 +00:00
|
|
|
'U_CATEGORIES'=> $link_start.'cat_list',
|
|
|
|
'U_MOVE'=> $link_start.'cat_move',
|
|
|
|
'U_CAT_OPTIONS'=> $link_start.'cat_options',
|
2006-02-28 01:13:16 +00:00
|
|
|
'U_CAT_UPDATE'=> $link_start.'site_update&site=1',
|
2007-03-16 18:49:19 +00:00
|
|
|
'U_WAITING'=> $link_start.'comments',
|
2006-02-15 02:29:26 +00:00
|
|
|
'U_RATING'=> $link_start.'rating',
|
2006-01-15 13:45:42 +00:00
|
|
|
'U_CADDIE'=> $link_start.'element_set&cat=caddie',
|
2008-09-24 01:27:49 +00:00
|
|
|
'U_RECENT_SET'=> $link_start.'element_set&cat=recent',
|
2006-04-02 22:26:19 +00:00
|
|
|
'U_TAGS'=> $link_start.'tags',
|
2006-01-15 13:45:42 +00:00
|
|
|
'U_THUMBNAILS'=> $link_start.'thumbnail',
|
|
|
|
'U_USERS'=> $link_start.'user_list',
|
|
|
|
'U_GROUPS'=> $link_start.'group_list',
|
2007-02-28 03:07:12 +00:00
|
|
|
'U_PERMALINKS'=> $link_start.'permalinks',
|
2006-03-15 22:44:35 +00:00
|
|
|
'U_RETURN'=> make_index_url(),
|
2008-09-23 17:56:54 +00:00
|
|
|
'U_ADMIN'=> PHPWG_ROOT_PATH.'admin.php',
|
2009-07-04 21:26:42 +00:00
|
|
|
'U_LOGOUT'=> PHPWG_ROOT_PATH.'index.php?act=logout',
|
2008-09-23 17:56:54 +00:00
|
|
|
'U_PLUGINS'=> $link_start.'plugins_list',
|
2010-03-08 23:39:53 +00:00
|
|
|
'U_ADD_PHOTOS' => $link_start.'photos_add',
|
2010-03-09 23:19:11 +00:00
|
|
|
'U_CHANGE_THEME' => PHPWG_ROOT_PATH.'admin.php?change_theme=1',
|
2005-08-17 14:25:38 +00:00
|
|
|
)
|
|
|
|
);
|
2006-02-28 01:13:16 +00:00
|
|
|
|
2007-09-27 22:46:17 +00:00
|
|
|
//---------------------------------------------------------------- plugin menus
|
2007-10-19 02:05:21 +00:00
|
|
|
$plugin_menu_links = trigger_event('get_admin_plugin_menu_links', array() );
|
|
|
|
|
|
|
|
function UC_name_compare($a, $b)
|
|
|
|
{
|
|
|
|
return strcmp(strtolower($a['NAME']), strtolower($b['NAME']));
|
|
|
|
}
|
|
|
|
usort($plugin_menu_links, 'UC_name_compare');
|
2008-02-27 02:31:51 +00:00
|
|
|
$template->assign('plugin_menu_items', $plugin_menu_links);
|
2006-12-14 00:58:57 +00:00
|
|
|
|
2007-09-27 22:46:17 +00:00
|
|
|
include(PHPWG_ROOT_PATH.'admin/'.$page['page'].'.php');
|
|
|
|
|
|
|
|
//------------------------------------------------------------- content display
|
|
|
|
|
2005-06-11 14:10:04 +00:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | errors & infos |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2005-08-17 14:25:38 +00:00
|
|
|
|
2005-06-11 14:10:04 +00:00
|
|
|
if (count($page['errors']) != 0)
|
|
|
|
{
|
2008-02-27 02:31:51 +00:00
|
|
|
$template->assign('errors', $page['errors']);
|
2005-06-11 14:10:04 +00:00
|
|
|
}
|
2005-08-17 14:25:38 +00:00
|
|
|
|
2005-06-11 14:10:04 +00:00
|
|
|
if (count($page['infos']) != 0)
|
|
|
|
{
|
2008-02-27 02:31:51 +00:00
|
|
|
$template->assign('infos', $page['infos']);
|
2005-06-11 14:10:04 +00:00
|
|
|
}
|
|
|
|
|
2008-05-14 22:25:36 +00:00
|
|
|
// Add the Piwigo Official menu
|
2008-05-03 17:28:15 +00:00
|
|
|
$template->assign( 'pwgmenu', pwg_URL() );
|
2008-08-28 00:32:39 +00:00
|
|
|
|
2007-09-27 22:46:17 +00:00
|
|
|
include(PHPWG_ROOT_PATH.'include/page_header.php');
|
2008-02-27 02:31:51 +00:00
|
|
|
$template->pparse('admin');
|
2005-08-17 14:25:38 +00:00
|
|
|
|
2004-12-25 19:33:36 +00:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | order permission refreshment |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2007-04-07 21:49:38 +00:00
|
|
|
// Only for pages witch change permissions
|
2007-04-11 00:49:45 +00:00
|
|
|
if (
|
|
|
|
in_array($page['page'],
|
|
|
|
array(
|
|
|
|
'site_manager', // delete site
|
|
|
|
'site_update', // ?only POST
|
|
|
|
'cat_list', // delete cat
|
|
|
|
'cat_modify', // delete cat; public/private; lock/unlock
|
|
|
|
'cat_move', // ?only POST
|
|
|
|
'cat_options', // ?only POST; public/private; lock/unlock
|
|
|
|
'cat_perm', // ?only POST
|
|
|
|
'element_set', // ?only POST; associate/dissociate
|
2007-09-27 22:46:17 +00:00
|
|
|
'picture_modify', // ?only POST; associate/dissociate
|
2007-04-11 00:49:45 +00:00
|
|
|
'user_list', // ?only POST; group assoc
|
|
|
|
'user_perm',
|
|
|
|
'group_perm',
|
|
|
|
'group_list', // delete group
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2007-04-07 21:49:38 +00:00
|
|
|
{
|
2007-04-26 01:59:39 +00:00
|
|
|
invalidate_user_cache();
|
2007-04-07 21:49:38 +00:00
|
|
|
}
|
|
|
|
|
2007-04-26 01:59:39 +00:00
|
|
|
include(PHPWG_ROOT_PATH.'include/page_tail.php');
|
2004-02-11 23:20:38 +00:00
|
|
|
?>
|