20f0541697
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). git-svn-id: http://piwigo.org/svn/trunk@817 68402e56-0260-453c-a942-63ccdbb3a9ee
300 lines
No EOL
8.7 KiB
PHP
300 lines
No EOL
8.7 KiB
PHP
<?php
|
|
// +-----------------------------------------------------------------------+
|
|
// | PhpWebGallery - a PHP based picture gallery |
|
|
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
|
|
// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
|
|
// +-----------------------------------------------------------------------+
|
|
// | branch : BSF (Best So Far)
|
|
// | 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. |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
if (!defined('PHPWG_ROOT_PATH'))
|
|
{
|
|
die ("Hacking attempt!");
|
|
}
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php');
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | modification registration |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// print '<pre>';
|
|
// print_r($_POST);
|
|
// print '</pre>';
|
|
if (isset($_POST['falsify'])
|
|
and isset($_POST['cat_true'])
|
|
and count($_POST['cat_true']) > 0)
|
|
{
|
|
switch ($_GET['section'])
|
|
{
|
|
case 'upload' :
|
|
{
|
|
$query = '
|
|
UPDATE '.CATEGORIES_TABLE.'
|
|
SET uploadable = \'false\'
|
|
WHERE id IN ('.implode(',', $_POST['cat_true']).')
|
|
;';
|
|
pwg_query($query);
|
|
break;
|
|
}
|
|
case 'comments' :
|
|
{
|
|
$query = '
|
|
UPDATE '.CATEGORIES_TABLE.'
|
|
SET commentable = \'false\'
|
|
WHERE id IN ('.implode(',', $_POST['cat_true']).')
|
|
;';
|
|
pwg_query($query);
|
|
break;
|
|
}
|
|
case 'visible' :
|
|
{
|
|
set_cat_visible($_POST['cat_true'], 'false');
|
|
break;
|
|
}
|
|
case 'status' :
|
|
{
|
|
set_cat_status($_POST['cat_true'], 'private');
|
|
break;
|
|
}
|
|
case 'representative' :
|
|
{
|
|
$query = '
|
|
UPDATE '.CATEGORIES_TABLE.'
|
|
SET representative_picture_id = NULL
|
|
WHERE id IN ('.implode(',', $_POST['cat_true']).')
|
|
;';
|
|
pwg_query($query);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else if (isset($_POST['trueify'])
|
|
and isset($_POST['cat_false'])
|
|
and count($_POST['cat_false']) > 0)
|
|
{
|
|
switch ($_GET['section'])
|
|
{
|
|
case 'upload' :
|
|
{
|
|
$query = '
|
|
UPDATE '.CATEGORIES_TABLE.'
|
|
SET uploadable = \'true\'
|
|
WHERE id IN ('.implode(',', $_POST['cat_false']).')
|
|
;';
|
|
pwg_query($query);
|
|
break;
|
|
}
|
|
case 'comments' :
|
|
{
|
|
$query = '
|
|
UPDATE '.CATEGORIES_TABLE.'
|
|
SET commentable = \'true\'
|
|
WHERE id IN ('.implode(',', $_POST['cat_false']).')
|
|
;';
|
|
pwg_query($query);
|
|
break;
|
|
}
|
|
case 'visible' :
|
|
{
|
|
set_cat_visible($_POST['cat_false'], 'true');
|
|
break;
|
|
}
|
|
case 'status' :
|
|
{
|
|
set_cat_status($_POST['cat_false'], 'public');
|
|
break;
|
|
}
|
|
case 'representative' :
|
|
{
|
|
// theoretically, all categories in $_POST['cat_false'] contain at
|
|
// least one element, so PhpWebGallery can find a representant.
|
|
set_random_representant($_POST['cat_false']);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | template init |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
$template->set_filenames(
|
|
array(
|
|
'cat_options' => 'admin/cat_options.tpl',
|
|
'double_select' => 'admin/double_select.tpl'
|
|
)
|
|
);
|
|
|
|
$page['section'] = isset($_GET['section']) ? $_GET['section'] : 'upload';
|
|
$base_url = PHPWG_ROOT_PATH.'admin.php?page=cat_options&section=';
|
|
|
|
$template->assign_vars(
|
|
array(
|
|
'L_SUBMIT'=>$lang['submit'],
|
|
'L_RESET'=>$lang['reset'],
|
|
|
|
'F_ACTION'=>add_session_id($base_url.$page['section'])
|
|
)
|
|
);
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | form display |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// for each section, categories in the multiselect field can be :
|
|
//
|
|
// - true : uploadable for upload section
|
|
// - false : un-uploadable for upload section
|
|
// - NA : (not applicable) for virtual categories
|
|
//
|
|
// for true and false status, we associates an array of category ids,
|
|
// function display_select_categories will use the given CSS class for each
|
|
// option
|
|
$cats_true = array();
|
|
$cats_false = array();
|
|
switch ($page['section'])
|
|
{
|
|
case 'upload' :
|
|
{
|
|
$query_true = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE uploadable = \'true\'
|
|
AND dir IS NOT NULL
|
|
AND site_id = 1
|
|
;';
|
|
$query_false = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE uploadable = \'false\'
|
|
AND dir IS NOT NULL
|
|
AND site_id = 1
|
|
;';
|
|
$template->assign_vars(
|
|
array(
|
|
'L_SECTION' => $lang['cat_upload_title'],
|
|
'L_CAT_OPTIONS_TRUE' => $lang['authorized'],
|
|
'L_CAT_OPTIONS_FALSE' => $lang['forbidden'],
|
|
'L_CAT_OPTIONS_INFO' => $lang['cat_upload_info'],
|
|
)
|
|
);
|
|
break;
|
|
}
|
|
case 'comments' :
|
|
{
|
|
$query_true = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE commentable = \'true\'
|
|
;';
|
|
$query_false = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE commentable = \'false\'
|
|
;';
|
|
$template->assign_vars(
|
|
array(
|
|
'L_SECTION' => $lang['cat_comments_title'],
|
|
'L_CAT_OPTIONS_TRUE' => $lang['authorized'],
|
|
'L_CAT_OPTIONS_FALSE' => $lang['forbidden'],
|
|
'L_CAT_OPTIONS_INFO' => $lang['cat_comments_info'],
|
|
)
|
|
);
|
|
break;
|
|
}
|
|
case 'visible' :
|
|
{
|
|
$query_true = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE visible = \'true\'
|
|
;';
|
|
$query_false = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE visible = \'false\'
|
|
;';
|
|
$template->assign_vars(
|
|
array(
|
|
'L_SECTION' => $lang['cat_lock_title'],
|
|
'L_CAT_OPTIONS_TRUE' => $lang['unlocked'],
|
|
'L_CAT_OPTIONS_FALSE' => $lang['locked'],
|
|
'L_CAT_OPTIONS_INFO' => $lang['cat_lock_info'],
|
|
)
|
|
);
|
|
break;
|
|
}
|
|
case 'status' :
|
|
{
|
|
$query_true = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE status = \'public\'
|
|
;';
|
|
$query_false = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE status = \'private\'
|
|
;';
|
|
$template->assign_vars(
|
|
array(
|
|
'L_SECTION' => $lang['cat_status_title'],
|
|
'L_CAT_OPTIONS_TRUE' => $lang['cat_public'],
|
|
'L_CAT_OPTIONS_FALSE' => $lang['cat_private'],
|
|
'L_CAT_OPTIONS_INFO' => $lang['cat_status_info'],
|
|
)
|
|
);
|
|
break;
|
|
}
|
|
case 'representative' :
|
|
{
|
|
$query_true = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE representative_picture_id IS NOT NULL
|
|
;';
|
|
$query_false = '
|
|
SELECT id,name,uppercats,global_rank
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE nb_images != 0
|
|
AND representative_picture_id IS NULL
|
|
;';
|
|
$template->assign_vars(
|
|
array(
|
|
'L_SECTION' => l10n('Representative'),
|
|
'L_CAT_OPTIONS_TRUE' => l10n('singly represented'),
|
|
'L_CAT_OPTIONS_FALSE' => l10n('randomly represented'),
|
|
'L_CAT_OPTIONS_INFO' => l10n('')
|
|
)
|
|
);
|
|
break;
|
|
}
|
|
}
|
|
display_select_cat_wrapper($query_true,array(),'category_option_true');
|
|
display_select_cat_wrapper($query_false,array(),'category_option_false');
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | sending html code |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
$template->assign_var_from_handle('DOUBLE_SELECT', 'double_select');
|
|
$template->assign_var_from_handle('ADMIN_CONTENT', 'cat_options');
|
|
?>
|