2003-11-02 11:22:14 +01:00
|
|
|
<?php
|
2004-02-07 20:36:44 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
2011-01-18 01:02:52 +01:00
|
|
|
// | Piwigo - a PHP based photo gallery |
|
2008-04-05 00:57:23 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
2016-01-14 12:17:58 +01:00
|
|
|
// | Copyright(C) 2008-2016 Piwigo Team http://piwigo.org |
|
2008-04-05 00:57:23 +02: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 20:36:44 +01: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 11:22:14 +01:00
|
|
|
|
2011-02-24 15:08:11 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Basic constants and includes |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2004-02-19 01:31:09 +01:00
|
|
|
define('PHPWG_ROOT_PATH','./');
|
2004-03-20 01:52:37 +01:00
|
|
|
define('IN_ADMIN', true);
|
2006-03-09 23:46:28 +01:00
|
|
|
|
2011-02-24 15:08:11 +01:00
|
|
|
include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
|
2006-03-09 23:46:28 +01:00
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
2006-12-14 01:58:57 +01:00
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions_plugins.inc.php');
|
2012-07-23 13:50:41 +02:00
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/add_core_tabs.inc.php');
|
2006-03-09 23:46:28 +01:00
|
|
|
|
2014-06-02 09:55:46 +02:00
|
|
|
trigger_notify('loc_begin_admin');
|
2010-04-21 14:51:48 +02:00
|
|
|
|
2006-03-09 23:46:28 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Check Access and exit when user status is not ok |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2011-02-24 15:08:11 +01:00
|
|
|
|
2006-03-09 23:46:28 +01:00
|
|
|
check_status(ACCESS_ADMINISTRATOR);
|
2005-08-08 22:52:19 +02:00
|
|
|
|
2011-02-24 15:08:11 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Direct actions |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2011-06-04 00:25:01 +02:00
|
|
|
// save plugins_new display order (AJAX action)
|
|
|
|
if (isset($_GET['plugins_new_order']))
|
|
|
|
{
|
|
|
|
pwg_set_session_var('plugins_new_order', $_GET['plugins_new_order']);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2010-03-10 00:19:11 +01:00
|
|
|
// theme changer
|
|
|
|
if (isset($_GET['change_theme']))
|
|
|
|
{
|
2010-03-13 01:00:52 +01:00
|
|
|
$admin_themes = array('roma', 'clear');
|
2010-03-10 00:19:11 +01:00
|
|
|
|
|
|
|
$new_admin_theme = array_pop(
|
|
|
|
array_diff(
|
|
|
|
$admin_themes,
|
2010-03-13 01:00:52 +01:00
|
|
|
array($conf['admin_theme'])
|
2010-03-10 00:19:11 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2010-03-15 00:58:55 +01:00
|
|
|
conf_update_param('admin_theme', $new_admin_theme);
|
2010-03-10 00:19:11 +01:00
|
|
|
|
2011-09-08 12:03:04 +02:00
|
|
|
$url_params = array();
|
|
|
|
foreach (array('page', 'tab', 'section') as $url_param)
|
|
|
|
{
|
|
|
|
if (isset($_GET[$url_param]))
|
|
|
|
{
|
|
|
|
$url_params[] = $url_param.'='.$_GET[$url_param];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$redirect_url = 'admin.php';
|
|
|
|
if (count($url_params) > 0)
|
|
|
|
{
|
|
|
|
$redirect_url.= '?'.implode('&', $url_params);
|
|
|
|
}
|
|
|
|
|
|
|
|
redirect($redirect_url);
|
2010-03-10 00:19:11 +01:00
|
|
|
}
|
|
|
|
|
2005-08-08 22:52:19 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
2011-02-24 15:08:11 +01:00
|
|
|
// | Synchronize user informations |
|
2005-08-08 22:52:19 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
2011-02-24 15:08:11 +01:00
|
|
|
|
2011-06-12 00:57:21 +02:00
|
|
|
// sync_user() is only useful when external authentication is activated
|
|
|
|
if ($conf['external_authentification'])
|
2011-01-18 21:57:36 +01:00
|
|
|
{
|
|
|
|
sync_users();
|
|
|
|
}
|
2005-08-08 22:52:19 +02:00
|
|
|
|
2005-08-17 16:25:38 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
2011-02-24 15:08:11 +01:00
|
|
|
// | Variables init |
|
2005-08-17 16:25:38 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
2004-03-20 01:52:37 +01:00
|
|
|
|
2011-09-08 12:03:04 +02:00
|
|
|
$change_theme_url = PHPWG_ROOT_PATH.'admin.php?';
|
|
|
|
$test_get = $_GET;
|
|
|
|
unset($test_get['page']);
|
|
|
|
unset($test_get['section']);
|
|
|
|
unset($test_get['tag']);
|
2013-12-12 11:40:39 +01:00
|
|
|
if (count($test_get) == 0 and !empty($_SERVER['QUERY_STRING']))
|
2011-09-08 12:03:04 +02:00
|
|
|
{
|
|
|
|
$change_theme_url.= str_replace('&', '&', $_SERVER['QUERY_STRING']).'&';
|
|
|
|
}
|
|
|
|
$change_theme_url.= 'change_theme=1';
|
|
|
|
|
2011-02-23 10:24:43 +01:00
|
|
|
// ?page=plugin-community-pendings is an clean alias of
|
|
|
|
// ?page=plugin§ion=community/admin.php&tab=pendings
|
2011-02-23 10:27:57 +01:00
|
|
|
if (isset($_GET['page']) and preg_match('/^plugin-([^-]*)(?:-(.*))?$/', $_GET['page'], $matches))
|
2011-02-23 10:24:43 +01:00
|
|
|
{
|
|
|
|
$_GET['page'] = 'plugin';
|
|
|
|
$_GET['section'] = $matches[1].'/admin.php';
|
|
|
|
if (isset($matches[2]))
|
|
|
|
{
|
|
|
|
$_GET['tab'] = $matches[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-02 00:03:35 +01:00
|
|
|
// ?page=album-134-properties is an clean alias of
|
|
|
|
// ?page=album&cat_id=134&tab=properties
|
|
|
|
if (isset($_GET['page']) and preg_match('/^album-(\d+)(?:-(.*))?$/', $_GET['page'], $matches))
|
|
|
|
{
|
|
|
|
$_GET['page'] = 'album';
|
|
|
|
$_GET['cat_id'] = $matches[1];
|
|
|
|
if (isset($matches[2]))
|
|
|
|
{
|
|
|
|
$_GET['tab'] = $matches[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-10 11:52:07 +01:00
|
|
|
// ?page=photo-1234-properties is an clean alias of
|
|
|
|
// ?page=photo&image_id=1234&tab=properties
|
|
|
|
if (isset($_GET['page']) and preg_match('/^photo-(\d+)(?:-(.*))?$/', $_GET['page'], $matches))
|
|
|
|
{
|
|
|
|
$_GET['page'] = 'photo';
|
|
|
|
$_GET['image_id'] = $matches[1];
|
|
|
|
if (isset($matches[2]))
|
|
|
|
{
|
|
|
|
$_GET['tab'] = $matches[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-09 12:38:54 +01:00
|
|
|
if (isset($_GET['page'])
|
2005-08-17 16:25:38 +02:00
|
|
|
and preg_match('/^[a-z_]*$/', $_GET['page'])
|
2007-01-09 12:38:54 +01:00
|
|
|
and is_file(PHPWG_ROOT_PATH.'admin/'.$_GET['page'].'.php'))
|
2003-11-02 11:22:14 +01:00
|
|
|
{
|
2007-01-09 12:38:54 +01:00
|
|
|
$page['page'] = $_GET['page'];
|
2003-11-02 11:22:14 +01:00
|
|
|
}
|
2007-01-09 12:38:54 +01:00
|
|
|
else
|
2003-11-02 11:22:14 +01:00
|
|
|
{
|
2007-01-09 12:38:54 +01: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=';
|
2011-02-24 15:08:11 +01:00
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Template init |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2008-05-15 20:43:33 +02: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-26 00:43:47 +02:00
|
|
|
$page['body_id'] = 'theAdminPage';
|
2004-03-20 01:52:37 +01:00
|
|
|
|
2005-08-17 16:25:38 +02:00
|
|
|
$template->set_filenames(array('admin' => 'admin.tpl'));
|
2004-11-23 23:31:24 +01:00
|
|
|
|
2008-02-27 03:31:51 +01:00
|
|
|
$template->assign(
|
2005-08-17 16:25:38 +02:00
|
|
|
array(
|
2010-03-10 00:19:11 +01:00
|
|
|
'USERNAME' => $user['username'],
|
2010-05-26 02:20:07 +02:00
|
|
|
'ENABLE_SYNCHRONIZATION' => $conf['enable_synchronization'],
|
2006-02-08 02:17:07 +01:00
|
|
|
'U_SITE_MANAGER'=> $link_start.'site_manager',
|
2007-01-17 00:39:39 +01:00
|
|
|
'U_HISTORY_STAT'=> $link_start.'stats',
|
2006-01-15 14:45:42 +01:00
|
|
|
'U_FAQ'=> $link_start.'help',
|
|
|
|
'U_SITES'=> $link_start.'remote_site',
|
|
|
|
'U_MAINTENANCE'=> $link_start.'maintenance',
|
2006-03-21 23:58:59 +01:00
|
|
|
'U_NOTIFICATION_BY_MAIL'=> $link_start.'notification_by_mail',
|
2007-03-12 00:02:13 +01:00
|
|
|
'U_CONFIG_GENERAL'=> $link_start.'configuration',
|
2006-01-15 14:45:42 +01:00
|
|
|
'U_CONFIG_DISPLAY'=> $conf_link.'default',
|
2008-07-14 23:42:40 +02:00
|
|
|
'U_CONFIG_EXTENTS'=> $link_start.'extend_for_templates',
|
2008-08-28 02:32:39 +02:00
|
|
|
'U_CONFIG_MENUBAR'=> $link_start.'menubar',
|
2011-04-23 14:48:05 +02:00
|
|
|
'U_CONFIG_LANGUAGES' => $link_start.'languages',
|
|
|
|
'U_CONFIG_THEMES'=> $link_start.'themes',
|
2006-01-15 14:45:42 +01:00
|
|
|
'U_CATEGORIES'=> $link_start.'cat_list',
|
|
|
|
'U_CAT_OPTIONS'=> $link_start.'cat_options',
|
2006-02-28 02:13:16 +01:00
|
|
|
'U_CAT_UPDATE'=> $link_start.'site_update&site=1',
|
2006-02-15 03:29:26 +01:00
|
|
|
'U_RATING'=> $link_start.'rating',
|
2013-10-10 13:07:45 +02:00
|
|
|
'U_RECENT_SET'=> $link_start.'batch_manager&filter=prefilter-last_import',
|
2010-12-30 15:36:02 +01:00
|
|
|
'U_BATCH'=> $link_start.'batch_manager',
|
2006-04-03 00:26:19 +02:00
|
|
|
'U_TAGS'=> $link_start.'tags',
|
2006-01-15 14:45:42 +01:00
|
|
|
'U_USERS'=> $link_start.'user_list',
|
|
|
|
'U_GROUPS'=> $link_start.'group_list',
|
2011-06-14 14:14:29 +02:00
|
|
|
'U_RETURN'=> get_gallery_home_url(),
|
2008-09-23 19:56:54 +02:00
|
|
|
'U_ADMIN'=> PHPWG_ROOT_PATH.'admin.php',
|
2009-07-04 23:26:42 +02:00
|
|
|
'U_LOGOUT'=> PHPWG_ROOT_PATH.'index.php?act=logout',
|
2011-04-23 14:48:05 +02:00
|
|
|
'U_PLUGINS'=> $link_start.'plugins',
|
2010-03-09 00:39:53 +01:00
|
|
|
'U_ADD_PHOTOS' => $link_start.'photos_add',
|
2011-09-08 12:03:04 +02:00
|
|
|
'U_CHANGE_THEME' => $change_theme_url,
|
2011-04-20 16:52:52 +02:00
|
|
|
'U_UPDATES' => $link_start.'updates',
|
2005-08-17 16:25:38 +02:00
|
|
|
)
|
|
|
|
);
|
2012-01-14 23:29:10 +01:00
|
|
|
|
|
|
|
if ($conf['activate_comments'])
|
|
|
|
{
|
2013-10-22 22:39:10 +02:00
|
|
|
$template->assign('U_COMMENTS', $link_start.'comments');
|
|
|
|
|
|
|
|
// pending comments
|
|
|
|
$query = '
|
|
|
|
SELECT COUNT(*)
|
|
|
|
FROM '.COMMENTS_TABLE.'
|
|
|
|
WHERE validated=\'false\'
|
|
|
|
;';
|
|
|
|
list($nb_comments) = pwg_db_fetch_row(pwg_query($query));
|
|
|
|
|
|
|
|
if ($nb_comments > 0)
|
|
|
|
{
|
|
|
|
$template->assign('NB_PENDING_COMMENTS', $nb_comments);
|
|
|
|
}
|
2012-01-14 23:29:10 +01:00
|
|
|
}
|
2006-02-28 02:13:16 +01:00
|
|
|
|
2012-07-25 13:45:08 +02:00
|
|
|
// any photo in the caddie?
|
|
|
|
$query = '
|
|
|
|
SELECT COUNT(*)
|
|
|
|
FROM '.CADDIE_TABLE.'
|
|
|
|
WHERE user_id = '.$user['id'].'
|
|
|
|
;';
|
|
|
|
list($nb_photos_in_caddie) = pwg_db_fetch_row(pwg_query($query));
|
|
|
|
|
|
|
|
if ($nb_photos_in_caddie > 0)
|
|
|
|
{
|
|
|
|
$template->assign(
|
|
|
|
array(
|
|
|
|
'NB_PHOTOS_IN_CADDIE' => $nb_photos_in_caddie,
|
2013-10-10 13:07:45 +02:00
|
|
|
'U_CADDIE' => $link_start.'batch_manager&filter=prefilter-caddie',
|
2012-07-25 13:45:08 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-10-09 19:13:30 +02:00
|
|
|
// any orphan photo?
|
|
|
|
$nb_orphans = count(get_orphans());
|
|
|
|
|
|
|
|
if ($nb_orphans > 0)
|
|
|
|
{
|
|
|
|
$template->assign(
|
|
|
|
array(
|
|
|
|
'NB_ORPHANS' => $nb_orphans,
|
|
|
|
'U_ORPHANS' => $link_start.'batch_manager&filter=prefilter-no_album',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-02-24 15:08:11 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Plugin menu |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2014-06-02 09:55:46 +02:00
|
|
|
$plugin_menu_links = trigger_change('get_admin_plugin_menu_links', array() );
|
2007-10-19 04:05:21 +02:00
|
|
|
|
|
|
|
function UC_name_compare($a, $b)
|
|
|
|
{
|
|
|
|
return strcmp(strtolower($a['NAME']), strtolower($b['NAME']));
|
|
|
|
}
|
|
|
|
usort($plugin_menu_links, 'UC_name_compare');
|
2008-02-27 03:31:51 +01:00
|
|
|
$template->assign('plugin_menu_items', $plugin_menu_links);
|
2006-12-14 01:58:57 +01:00
|
|
|
|
2005-06-11 16:10:04 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
2011-02-24 15:08:11 +01:00
|
|
|
// | Refresh permissions |
|
2005-06-11 16:10:04 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
2005-08-17 16:25:38 +02:00
|
|
|
|
2007-04-07 23:49:38 +02:00
|
|
|
// Only for pages witch change permissions
|
2007-04-11 02:49:45 +02:00
|
|
|
if (
|
|
|
|
in_array($page['page'],
|
|
|
|
array(
|
|
|
|
'site_manager', // delete site
|
|
|
|
'site_update', // ?only POST
|
|
|
|
)
|
|
|
|
)
|
2011-02-08 21:33:40 +01:00
|
|
|
or ( !empty($_POST) and in_array($page['page'],
|
2011-01-18 21:57:36 +01:00
|
|
|
array(
|
2012-02-19 20:59:22 +01:00
|
|
|
'album', // public/private; lock/unlock, permissions
|
2013-12-16 21:18:56 +01:00
|
|
|
'cat_move',
|
|
|
|
'cat_options', // public/private; lock/unlock
|
2011-02-08 21:33:40 +01:00
|
|
|
'user_list', // group assoc; user level
|
2013-12-16 21:18:56 +01:00
|
|
|
'user_perm',
|
2011-01-18 21:57:36 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2007-04-11 02:49:45 +02:00
|
|
|
)
|
2007-04-07 23:49:38 +02:00
|
|
|
{
|
2007-04-26 03:59:39 +02:00
|
|
|
invalidate_user_cache();
|
2007-04-07 23:49:38 +02:00
|
|
|
}
|
|
|
|
|
2011-02-24 15:08:11 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Include specific page |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2014-06-02 09:55:46 +02:00
|
|
|
trigger_notify('loc_begin_admin_page');
|
2011-02-24 15:08:11 +01:00
|
|
|
include(PHPWG_ROOT_PATH.'admin/'.$page['page'].'.php');
|
|
|
|
|
|
|
|
$template->assign('ACTIVE_MENU', get_active_menu($page['page']));
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Sending html code |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
// Add the Piwigo Official menu
|
|
|
|
$template->assign( 'pwgmenu', pwg_URL() );
|
|
|
|
|
|
|
|
include(PHPWG_ROOT_PATH.'include/page_header.php');
|
|
|
|
|
2014-06-02 09:55:46 +02:00
|
|
|
trigger_notify('loc_end_admin');
|
2011-02-24 15:08:11 +01:00
|
|
|
|
2013-02-07 22:17:08 +01:00
|
|
|
flush_page_messages();
|
2012-10-04 18:03:25 +02:00
|
|
|
|
2011-02-24 15:08:11 +01:00
|
|
|
$template->pparse('admin');
|
|
|
|
|
2007-04-26 03:59:39 +02:00
|
|
|
include(PHPWG_ROOT_PATH.'include/page_tail.php');
|
2004-02-12 00:20:38 +01:00
|
|
|
?>
|