2005-04-16 09:49:55 +02:00
|
|
|
<?php
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | PhpWebGallery - a PHP based picture gallery |
|
|
|
|
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
|
2008-03-05 02:50:08 +01:00
|
|
|
// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
|
2005-04-16 09:49:55 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
2008-03-05 02:50:08 +01:00
|
|
|
// | file : $Id$
|
2005-04-16 09:49:55 +02:00
|
|
|
// | 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. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Management of elements set. Elements can belong to a category or to the
|
|
|
|
* user caddie.
|
2006-11-15 05:25:12 +01:00
|
|
|
*
|
2005-04-16 09:49:55 +02:00
|
|
|
*/
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-04-16 09:49:55 +02:00
|
|
|
if (!defined('PHPWG_ROOT_PATH'))
|
|
|
|
{
|
|
|
|
die('Hacking attempt!');
|
|
|
|
}
|
2006-03-09 23:46:28 +01:00
|
|
|
|
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | Check Access and exit when user status is not ok |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
check_status(ACCESS_ADMINISTRATOR);
|
2005-04-16 09:49:55 +02:00
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | unit mode form submission |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
if (isset($_POST['submit']))
|
|
|
|
{
|
2008-03-05 02:50:08 +01:00
|
|
|
$collection = explode(',', $_POST['element_ids']);
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-04-16 09:49:55 +02:00
|
|
|
$datas = array();
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-04-16 09:49:55 +02:00
|
|
|
$query = '
|
|
|
|
SELECT id, date_creation
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
WHERE id IN ('.implode(',', $collection).')
|
|
|
|
;';
|
|
|
|
$result = pwg_query($query);
|
|
|
|
|
|
|
|
while ($row = mysql_fetch_array($result))
|
|
|
|
{
|
|
|
|
$data = array();
|
2005-08-19 21:07:13 +02:00
|
|
|
|
|
|
|
$data{'id'} = $row['id'];
|
|
|
|
$data{'name'} = $_POST['name-'.$row['id']];
|
|
|
|
$data{'author'} = $_POST['author-'.$row['id']];
|
|
|
|
|
|
|
|
foreach (array('name', 'author') as $field)
|
2005-04-16 09:49:55 +02:00
|
|
|
{
|
|
|
|
if (!empty($_POST[$field.'-'.$row['id']]))
|
|
|
|
{
|
2005-08-19 21:07:13 +02:00
|
|
|
$data{$field} = strip_tags($_POST[$field.'-'.$row['id']]);
|
|
|
|
}
|
|
|
|
}
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-08-19 21:07:13 +02:00
|
|
|
if ($conf['allow_html_descriptions'])
|
|
|
|
{
|
|
|
|
$data{'comment'} = @$_POST['description-'.$row['id']];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$data{'comment'} = strip_tags(@$_POST['description-'.$row['id']]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_POST['date_creation_action-'.$row['id']]))
|
|
|
|
{
|
|
|
|
if ('set' == $_POST['date_creation_action-'.$row['id']])
|
|
|
|
{
|
|
|
|
$data{'date_creation'} =
|
|
|
|
$_POST['date_creation_year-'.$row['id']]
|
|
|
|
.'-'.$_POST['date_creation_month-'.$row['id']]
|
|
|
|
.'-'.$_POST['date_creation_day-'.$row['id']];
|
|
|
|
}
|
|
|
|
else if ('unset' == $_POST['date_creation_action-'.$row['id']])
|
|
|
|
{
|
|
|
|
$data{'date_creation'} = '';
|
2005-04-16 09:49:55 +02:00
|
|
|
}
|
|
|
|
}
|
2005-08-19 21:07:13 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$data{'date_creation'} = $row['date_creation'];
|
|
|
|
}
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2006-04-03 00:26:19 +02:00
|
|
|
array_push($datas, $data);
|
2005-04-16 09:49:55 +02:00
|
|
|
|
2006-04-03 00:26:19 +02:00
|
|
|
// tags management
|
|
|
|
if (isset($_POST[ 'tags-'.$row['id'] ]))
|
2005-04-16 09:49:55 +02:00
|
|
|
{
|
2006-04-03 00:26:19 +02:00
|
|
|
set_tags($_POST[ 'tags-'.$row['id'] ], $row['id']);
|
2005-04-16 09:49:55 +02:00
|
|
|
}
|
|
|
|
}
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-08-19 21:07:13 +02:00
|
|
|
mass_updates(
|
|
|
|
IMAGES_TABLE,
|
|
|
|
array(
|
|
|
|
'primary' => array('id'),
|
2006-04-03 00:26:19 +02:00
|
|
|
'update' => array('name','author','comment','date_creation')
|
2005-08-19 21:07:13 +02:00
|
|
|
),
|
|
|
|
$datas
|
|
|
|
);
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-08-19 21:07:13 +02:00
|
|
|
array_push($page['infos'], l10n('Picture informations updated'));
|
2005-04-16 09:49:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | template init |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
$template->set_filenames(
|
|
|
|
array('element_set_unit' => 'admin/element_set_unit.tpl'));
|
|
|
|
|
|
|
|
$base_url = PHPWG_ROOT_PATH.'admin.php';
|
|
|
|
|
2008-03-05 02:50:08 +01:00
|
|
|
$month_list = $lang['month'];
|
|
|
|
$month_list[0]='------------';
|
|
|
|
ksort($month_list);
|
2005-04-16 09:49:55 +02:00
|
|
|
|
2008-03-05 02:50:08 +01:00
|
|
|
$template->assign(
|
2005-04-16 09:49:55 +02:00
|
|
|
array(
|
2005-08-19 19:00:20 +02:00
|
|
|
'CATEGORIES_NAV'=>$page['title'],
|
2005-04-16 18:56:32 +02:00
|
|
|
|
2005-04-16 09:49:55 +02:00
|
|
|
'U_ELEMENTS_PAGE'
|
|
|
|
=>$base_url.get_query_string_diff(array('display','start')),
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-04-16 09:49:55 +02:00
|
|
|
'U_GLOBAL_MODE'
|
2005-04-16 18:56:32 +02:00
|
|
|
=>
|
|
|
|
$base_url
|
|
|
|
.get_query_string_diff(array('mode','display'))
|
|
|
|
.'&mode=global',
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-04-16 09:49:55 +02:00
|
|
|
'F_ACTION'=>$base_url.get_query_string_diff(array()),
|
2008-03-05 02:50:08 +01:00
|
|
|
|
|
|
|
'month_list' => $month_list
|
2005-04-16 09:49:55 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | global mode thumbnails |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2005-09-24 21:05:55 +02:00
|
|
|
// how many items to display on this page
|
|
|
|
if (!empty($_GET['display']))
|
|
|
|
{
|
|
|
|
if ('all' == $_GET['display'])
|
|
|
|
{
|
|
|
|
$page['nb_images'] = count($page['cat_elements_id']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$page['nb_images'] = intval($_GET['display']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$page['nb_images'] = 5;
|
|
|
|
}
|
|
|
|
|
2005-04-16 18:56:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
if (count($page['cat_elements_id']) > 0)
|
|
|
|
{
|
|
|
|
$nav_bar = create_navigation_bar(
|
|
|
|
$base_url.get_query_string_diff(array('start')),
|
|
|
|
count($page['cat_elements_id']),
|
|
|
|
$page['start'],
|
2006-03-16 23:34:45 +01:00
|
|
|
$page['nb_images']
|
|
|
|
);
|
2008-03-05 02:50:08 +01:00
|
|
|
$template->assign(array('NAV_BAR' => $nav_bar));
|
2005-04-16 18:56:32 +02:00
|
|
|
|
2006-04-03 00:26:19 +02:00
|
|
|
// tags
|
|
|
|
$all_tags = get_all_tags();
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-04-16 18:56:32 +02:00
|
|
|
$element_ids = array();
|
2005-04-16 09:49:55 +02:00
|
|
|
|
2005-04-16 18:56:32 +02:00
|
|
|
$query = '
|
2006-04-03 00:26:19 +02:00
|
|
|
SELECT id,path,tn_ext,name,date_creation,comment,author,file
|
2005-04-16 18:56:32 +02:00
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
WHERE id IN ('.implode(',', $page['cat_elements_id']).')
|
2005-04-16 09:49:55 +02:00
|
|
|
'.$conf['order_by'].'
|
|
|
|
LIMIT '.$page['start'].', '.$page['nb_images'].'
|
|
|
|
;';
|
2005-04-16 18:56:32 +02:00
|
|
|
$result = pwg_query($query);
|
2005-04-16 09:49:55 +02:00
|
|
|
|
2006-11-15 05:25:12 +01:00
|
|
|
while ($row = mysql_fetch_assoc($result))
|
2005-04-16 09:49:55 +02:00
|
|
|
{
|
2005-04-16 18:56:32 +02:00
|
|
|
// echo '<pre>'; print_r($row); echo '</pre>';
|
|
|
|
array_push($element_ids, $row['id']);
|
2006-11-15 05:25:12 +01:00
|
|
|
|
|
|
|
$src = get_thumbnail_url($row);
|
2006-04-03 00:26:19 +02:00
|
|
|
|
|
|
|
$query = '
|
|
|
|
SELECT tag_id
|
|
|
|
FROM '.IMAGE_TAG_TABLE.'
|
|
|
|
WHERE image_id = '.$row['id'].'
|
|
|
|
;';
|
|
|
|
$selected_tags = array_from_query($query, 'tag_id');
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-04-16 18:56:32 +02:00
|
|
|
// creation date
|
|
|
|
if (!empty($row['date_creation']))
|
|
|
|
{
|
|
|
|
list($year,$month,$day) = explode('-', $row['date_creation']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-03-05 02:50:08 +01:00
|
|
|
list($year,$month,$day) = array('',0,0);
|
2005-04-16 18:56:32 +02:00
|
|
|
}
|
2006-05-16 00:21:08 +02:00
|
|
|
|
|
|
|
if (count($all_tags) > 0)
|
|
|
|
{
|
|
|
|
$tag_selection = get_html_tag_selection(
|
|
|
|
$all_tags,
|
|
|
|
'tags-'.$row['id'],
|
|
|
|
$selected_tags
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$tag_selection =
|
|
|
|
'<p>'.
|
|
|
|
l10n('No tag defined. Use Administration>Pictures>Tags').
|
|
|
|
'</p>';
|
|
|
|
}
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2008-03-05 02:50:08 +01:00
|
|
|
$template->append(
|
|
|
|
'elements',
|
2005-04-16 18:56:32 +02:00
|
|
|
array(
|
2008-03-05 02:50:08 +01:00
|
|
|
'ID' => $row['id'],
|
|
|
|
'TN_SRC' => $src,
|
2005-08-19 21:07:13 +02:00
|
|
|
'LEGEND' =>
|
|
|
|
!empty($row['name']) ?
|
|
|
|
$row['name'] : get_name_from_file($row['file']),
|
|
|
|
'U_EDIT' =>
|
|
|
|
PHPWG_ROOT_PATH.'admin.php?page=picture_modify'.
|
2006-01-15 14:45:42 +01:00
|
|
|
'&image_id='.$row['id'],
|
2005-04-16 18:56:32 +02:00
|
|
|
'NAME' => @$row['name'],
|
|
|
|
'AUTHOR' => @$row['author'],
|
2005-08-19 21:07:13 +02:00
|
|
|
'DESCRIPTION' => @$row['comment'],
|
2005-04-16 18:56:32 +02:00
|
|
|
'DATE_CREATION_YEAR' => $year,
|
2008-03-05 02:50:08 +01:00
|
|
|
'DATE_CREATION_MONTH' => (int)$month,
|
|
|
|
'DATE_CREATION_DAY' => (int)$day,
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2006-05-16 00:21:08 +02:00
|
|
|
'TAG_SELECTION' => $tag_selection,
|
2005-04-16 18:56:32 +02:00
|
|
|
)
|
|
|
|
);
|
2005-04-16 09:49:55 +02:00
|
|
|
}
|
|
|
|
|
2008-03-05 02:50:08 +01:00
|
|
|
$template->assign('ELEMENT_IDS', implode(',', $element_ids));
|
2005-04-16 09:49:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | sending html code |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
|
|
|
$template->assign_var_from_handle('ADMIN_CONTENT', 'element_set_unit');
|
|
|
|
?>
|