2010-03-09 00:39:53 +01:00
|
|
|
<?php
|
|
|
|
// +-----------------------------------------------------------------------+
|
2011-01-18 01:02:52 +01:00
|
|
|
// | Piwigo - a PHP based photo gallery |
|
2010-03-09 00:39:53 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Copyright(C) 2010 Pierrick LE GALL http://piwigo.org |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | 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('PHOTOS_ADD_BASE_URL'))
|
|
|
|
{
|
|
|
|
die ("Hacking attempt!");
|
|
|
|
}
|
|
|
|
|
|
|
|
// by default, the form values are the current configuration
|
|
|
|
// we may overwrite them with the current form values
|
|
|
|
$form_values = array();
|
|
|
|
|
|
|
|
foreach ($upload_form_config as $param_shortname => $param)
|
|
|
|
{
|
|
|
|
$param_name = 'upload_form_'.$param_shortname;
|
|
|
|
$form_values[$param_shortname] = $conf[$param_name];
|
|
|
|
}
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | process form |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
if (isset($_POST['submit']))
|
|
|
|
{
|
|
|
|
$updates = array();
|
|
|
|
|
|
|
|
// let's care about the specific checkbox that disable/enable other
|
|
|
|
// settings
|
|
|
|
$field = 'websize_resize';
|
2010-12-22 16:15:35 +01:00
|
|
|
$fields[] = $field;
|
2010-03-09 00:39:53 +01:00
|
|
|
|
2010-12-22 16:15:35 +01:00
|
|
|
if (!empty($_POST[$field]))
|
2010-03-09 00:39:53 +01:00
|
|
|
{
|
|
|
|
$fields[] = 'websize_maxwidth';
|
|
|
|
$fields[] = 'websize_maxheight';
|
|
|
|
$fields[] = 'websize_quality';
|
2010-12-22 16:15:35 +01:00
|
|
|
}
|
2010-03-09 00:39:53 +01:00
|
|
|
|
2010-12-22 16:15:35 +01:00
|
|
|
// hd_keep
|
|
|
|
$field = 'hd_keep';
|
|
|
|
$fields[] = $field;
|
|
|
|
|
|
|
|
if (!empty($_POST[$field]))
|
|
|
|
{
|
|
|
|
$field = 'hd_resize';
|
|
|
|
$fields[] = $field;
|
|
|
|
|
|
|
|
if (!empty($_POST[$field]))
|
|
|
|
{
|
|
|
|
$fields[] = 'hd_maxwidth';
|
|
|
|
$fields[] = 'hd_maxheight';
|
|
|
|
$fields[] = 'hd_quality';
|
|
|
|
}
|
2010-03-09 00:39:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// and now other fields, processed in a generic way
|
|
|
|
$fields[] = 'thumb_maxwidth';
|
|
|
|
$fields[] = 'thumb_maxheight';
|
|
|
|
$fields[] = 'thumb_quality';
|
2011-04-21 23:55:20 +02:00
|
|
|
$fields[] = 'thumb_crop';
|
|
|
|
$fields[] = 'thumb_follow_orientation';
|
|
|
|
|
2010-03-09 00:39:53 +01:00
|
|
|
foreach ($fields as $field)
|
|
|
|
{
|
2011-04-23 10:51:53 +02:00
|
|
|
$value = !empty($_POST[$field]) ? $_POST[$field] : null;
|
2010-12-22 16:15:35 +01:00
|
|
|
$form_values[$field] = $value;
|
2011-04-23 10:51:53 +02:00
|
|
|
$updates[$field] = $value;
|
2010-03-09 00:39:53 +01:00
|
|
|
}
|
|
|
|
|
2011-04-23 10:51:53 +02:00
|
|
|
save_upload_form_config($updates, $page['errors']);
|
|
|
|
|
2010-03-09 00:39:53 +01:00
|
|
|
if (count($page['errors']) == 0)
|
|
|
|
{
|
|
|
|
array_push(
|
|
|
|
$page['infos'],
|
|
|
|
l10n('Your configuration settings are saved')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | template init |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2010-12-22 16:15:35 +01:00
|
|
|
foreach (array_keys($upload_form_config) as $field)
|
|
|
|
{
|
|
|
|
if (is_bool($upload_form_config[$field]['default']))
|
|
|
|
{
|
|
|
|
$form_values[$field] = $form_values[$field] ? 'checked="checked"' : '';
|
|
|
|
}
|
|
|
|
}
|
2010-03-09 00:39:53 +01:00
|
|
|
|
|
|
|
$template->assign(
|
|
|
|
array(
|
|
|
|
'F_ADD_ACTION'=> PHOTOS_ADD_BASE_URL,
|
2011-04-29 19:10:00 +02:00
|
|
|
'MANAGE_HD' => pwg_image::get_library() != 'gd',
|
2010-03-09 00:39:53 +01:00
|
|
|
'values' => $form_values
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | sending html code |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2010-04-25 01:29:54 +02:00
|
|
|
$template->assign_var_from_handle('ADMIN_CONTENT', 'photos_add');
|
2010-03-09 00:39:53 +01:00
|
|
|
?>
|