2003-08-30 17:54:37 +02:00
|
|
|
<?php
|
2004-02-12 00:20:38 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
2004-11-06 22:12:59 +01:00
|
|
|
// | PhpWebGallery - a PHP based picture gallery |
|
|
|
|
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
|
2005-01-08 00:10:51 +01:00
|
|
|
// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
|
2004-02-12 00:20:38 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
2004-11-06 22:12:59 +01:00
|
|
|
// | branch : BSF (Best So Far)
|
2004-02-12 00:20:38 +01:00
|
|
|
// | 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. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2003-08-30 17:54:37 +02:00
|
|
|
|
2004-10-23 11:58:28 +02:00
|
|
|
if(!defined("PHPWG_ROOT_PATH"))
|
2004-09-01 01:05:19 +02:00
|
|
|
{
|
2005-08-18 19:59:00 +02:00
|
|
|
die('Hacking attempt!');
|
2004-09-01 01:05:19 +02:00
|
|
|
}
|
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-08-18 19:59:00 +02:00
|
|
|
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | synchronize metadata |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2006-03-16 23:58:16 +01:00
|
|
|
if (isset($_GET['sync_metadata']) and !is_adviser())
|
2005-08-18 19:59:00 +02:00
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
SELECT path
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
WHERE id = '.$_GET['image_id'].'
|
|
|
|
;';
|
|
|
|
list($path) = mysql_fetch_row(pwg_query($query));
|
|
|
|
update_metadata(array($_GET['image_id'] => $path));
|
|
|
|
|
|
|
|
array_push($page['infos'], l10n('Metadata synchronized from file'));
|
|
|
|
}
|
|
|
|
|
2003-08-30 17:54:37 +02:00
|
|
|
//--------------------------------------------------------- update informations
|
2005-08-18 19:59:00 +02:00
|
|
|
|
2003-08-30 17:54:37 +02:00
|
|
|
// first, we verify whether there is a mistake on the given creation date
|
2005-08-18 19:59:00 +02:00
|
|
|
if (isset($_POST['date_creation_action'])
|
|
|
|
and 'set' == $_POST['date_creation_action'])
|
2003-08-30 17:54:37 +02:00
|
|
|
{
|
2005-08-18 19:59:00 +02:00
|
|
|
if (!checkdate(
|
|
|
|
$_POST['date_creation_month'],
|
|
|
|
$_POST['date_creation_day'],
|
|
|
|
$_POST['date_creation_year'])
|
|
|
|
)
|
2004-10-23 11:58:28 +02:00
|
|
|
{
|
2005-06-11 16:10:04 +02:00
|
|
|
array_push($page['errors'], $lang['err_date']);
|
2004-10-23 11:58:28 +02:00
|
|
|
}
|
2003-08-30 17:54:37 +02:00
|
|
|
}
|
2005-08-18 19:59:00 +02:00
|
|
|
|
2006-10-21 14:28:07 +02:00
|
|
|
if (isset($_POST['submit']) and count($page['errors']) == 0 and !is_adviser())
|
2003-08-30 17:54:37 +02:00
|
|
|
{
|
2005-08-18 19:59:00 +02:00
|
|
|
$data = array();
|
|
|
|
$data{'id'} = $_GET['image_id'];
|
|
|
|
$data{'name'} = $_POST['name'];
|
|
|
|
$data{'author'} = $_POST['author'];
|
2003-08-30 17:54:37 +02:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
if ($conf['allow_html_descriptions'])
|
|
|
|
{
|
|
|
|
$data{'comment'} = @$_POST['description'];
|
|
|
|
}
|
2003-08-30 17:54:37 +02:00
|
|
|
else
|
|
|
|
{
|
2005-08-18 19:59:00 +02:00
|
|
|
$data{'comment'} = strip_tags(@$_POST['description']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_POST['date_creation_action']))
|
|
|
|
{
|
|
|
|
if ('set' == $_POST['date_creation_action'])
|
|
|
|
{
|
|
|
|
$data{'date_creation'} = $_POST['date_creation_year']
|
|
|
|
.'-'.$_POST['date_creation_month']
|
|
|
|
.'-'.$_POST['date_creation_day'];
|
|
|
|
}
|
|
|
|
else if ('unset' == $_POST['date_creation_action'])
|
|
|
|
{
|
|
|
|
$data{'date_creation'} = '';
|
2003-08-30 17:54:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
mass_updates(
|
|
|
|
IMAGES_TABLE,
|
|
|
|
array(
|
|
|
|
'primary' => array('id'),
|
|
|
|
'update' => array_diff(array_keys($data), array('id'))
|
|
|
|
),
|
|
|
|
array($data)
|
|
|
|
);
|
|
|
|
|
2006-04-03 00:26:19 +02:00
|
|
|
set_tags(
|
|
|
|
isset($_POST['tags']) ? $_POST['tags'] : array(),
|
|
|
|
$_GET['image_id']
|
|
|
|
);
|
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
array_push($page['infos'], l10n('Picture informations updated'));
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
}
|
|
|
|
// associate the element to other categories than its storage category
|
|
|
|
if (isset($_POST['associate'])
|
|
|
|
and isset($_POST['cat_dissociated'])
|
2006-10-21 14:28:07 +02:00
|
|
|
and count($_POST['cat_dissociated']) > 0
|
|
|
|
and !is_adviser()
|
|
|
|
)
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
{
|
2006-04-05 00:29:35 +02:00
|
|
|
associate_images_to_categories(
|
|
|
|
array($_GET['image_id']),
|
|
|
|
$_POST['cat_dissociated']
|
2006-03-05 23:44:32 +01:00
|
|
|
);
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
}
|
|
|
|
// dissociate the element from categories (but not from its storage category)
|
|
|
|
if (isset($_POST['dissociate'])
|
|
|
|
and isset($_POST['cat_associated'])
|
2006-10-21 14:28:07 +02:00
|
|
|
and count($_POST['cat_associated']) > 0
|
|
|
|
and !is_adviser()
|
|
|
|
)
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
{
|
2004-10-23 11:58:28 +02:00
|
|
|
$query = '
|
|
|
|
DELETE FROM '.IMAGE_CATEGORY_TABLE.'
|
|
|
|
WHERE image_id = '.$_GET['image_id'].'
|
2006-04-05 00:29:35 +02:00
|
|
|
AND category_id IN ('.implode(',', $_POST['cat_associated']).')
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
';
|
|
|
|
pwg_query($query);
|
2006-11-15 05:25:12 +01:00
|
|
|
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
update_category($_POST['cat_associated']);
|
2003-08-30 17:54:37 +02:00
|
|
|
}
|
2004-12-06 23:28:32 +01:00
|
|
|
// elect the element to represent the given categories
|
|
|
|
if (isset($_POST['elect'])
|
|
|
|
and isset($_POST['cat_dismissed'])
|
2006-10-21 14:28:07 +02:00
|
|
|
and count($_POST['cat_dismissed']) > 0
|
|
|
|
and !is_adviser()
|
|
|
|
)
|
2004-12-06 23:28:32 +01:00
|
|
|
{
|
|
|
|
$datas = array();
|
|
|
|
foreach ($_POST['cat_dismissed'] as $category_id)
|
|
|
|
{
|
|
|
|
array_push($datas,
|
|
|
|
array('id' => $category_id,
|
|
|
|
'representative_picture_id' => $_GET['image_id']));
|
|
|
|
}
|
|
|
|
$fields = array('primary' => array('id'),
|
|
|
|
'update' => array('representative_picture_id'));
|
|
|
|
mass_updates(CATEGORIES_TABLE, $fields, $datas);
|
|
|
|
}
|
|
|
|
// dismiss the element as representant of the given categories
|
|
|
|
if (isset($_POST['dismiss'])
|
|
|
|
and isset($_POST['cat_elected'])
|
2006-10-21 14:28:07 +02:00
|
|
|
and count($_POST['cat_elected']) > 0
|
|
|
|
and !is_adviser()
|
|
|
|
)
|
2004-12-06 23:28:32 +01:00
|
|
|
{
|
|
|
|
set_random_representant($_POST['cat_elected']);
|
|
|
|
}
|
2003-08-30 17:54:37 +02:00
|
|
|
|
|
|
|
// retrieving direct information about picture
|
2004-10-23 11:58:28 +02:00
|
|
|
$query = '
|
2005-08-18 19:59:00 +02:00
|
|
|
SELECT *
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
WHERE id = '.$_GET['image_id'].'
|
2004-10-23 11:58:28 +02:00
|
|
|
;';
|
2004-10-30 17:42:29 +02:00
|
|
|
$row = mysql_fetch_array(pwg_query($query));
|
2004-02-02 01:55:18 +01:00
|
|
|
|
2006-04-05 00:29:35 +02:00
|
|
|
$storage_category_id = $row['storage_category_id'];
|
2006-03-22 02:01:47 +01:00
|
|
|
$image_file = $row['file'];
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
|
2006-04-03 00:26:19 +02:00
|
|
|
// tags
|
|
|
|
$query = '
|
|
|
|
SELECT tag_id
|
|
|
|
FROM '.IMAGE_TAG_TABLE.'
|
|
|
|
WHERE image_id = '.$_GET['image_id'].'
|
|
|
|
;';
|
|
|
|
$selected_tags = array_from_query($query, 'tag_id');
|
|
|
|
|
2004-09-01 01:05:19 +02:00
|
|
|
// Navigation path
|
2004-10-23 14:38:34 +02:00
|
|
|
|
2005-06-11 16:10:04 +02:00
|
|
|
$date = isset($_POST['date_creation']) && empty($page['errors'])
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
?$_POST['date_creation']:date_convert_back(@$row['date_creation']);
|
2004-12-12 22:06:39 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | template init |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2005-08-17 16:25:38 +02:00
|
|
|
$template->set_filenames(
|
|
|
|
array(
|
|
|
|
'picture_modify' => 'admin/picture_modify.tpl'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2006-05-16 00:21:08 +02:00
|
|
|
$all_tags = get_all_tags();
|
|
|
|
|
|
|
|
if (count($all_tags) > 0)
|
|
|
|
{
|
|
|
|
$tag_selection = get_html_tag_selection(
|
|
|
|
get_all_tags(),
|
|
|
|
'tags',
|
|
|
|
$selected_tags
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$tag_selection =
|
|
|
|
'<p>'.
|
|
|
|
l10n('No tag defined. Use Administration>Pictures>Tags').
|
|
|
|
'</p>';
|
|
|
|
}
|
2006-11-15 05:25:12 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
$template->assign_vars(
|
|
|
|
array(
|
|
|
|
'U_SYNC' =>
|
|
|
|
PHPWG_ROOT_PATH.'admin.php?page=picture_modify'.
|
|
|
|
'&image_id='.$_GET['image_id'].
|
|
|
|
(isset($_GET['cat_id']) ? '&cat_id='.$_GET['cat_id'] : '').
|
2006-01-15 14:45:42 +01:00
|
|
|
'&sync_metadata=1',
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
'PATH'=>$row['path'],
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2006-11-15 05:25:12 +01:00
|
|
|
'TN_SRC' => get_thumbnail_url($row),
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
'NAME' =>
|
|
|
|
isset($_POST['name']) ?
|
|
|
|
stripslashes($_POST['name']) : @$row['name'],
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
'DIMENSIONS' => @$row['width'].' * '.@$row['height'],
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
'FILESIZE' => @$row['filesize'].' KB',
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
'REGISTRATION_DATE' =>
|
|
|
|
format_date($row['date_available'], 'mysql_datetime', false),
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
'AUTHOR' => isset($_POST['author']) ? $_POST['author'] : @$row['author'],
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
'CREATION_DATE' => $date,
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2006-05-16 00:21:08 +02:00
|
|
|
'TAG_SELECTION' => $tag_selection,
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
'DESCRIPTION' =>
|
|
|
|
isset($_POST['description']) ?
|
|
|
|
stripslashes($_POST['description']) : @$row['comment'],
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
'F_ACTION' =>
|
|
|
|
PHPWG_ROOT_PATH.'admin.php'
|
|
|
|
.get_query_string_diff(array('sync_metadata'))
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
// creation date
|
|
|
|
unset($day, $month, $year);
|
|
|
|
|
|
|
|
if (isset($_POST['date_creation_action'])
|
|
|
|
and 'set' == $_POST['date_creation_action'])
|
|
|
|
{
|
|
|
|
foreach (array('day', 'month', 'year') as $varname)
|
|
|
|
{
|
|
|
|
$$varname = $_POST['date_creation_'.$varname];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (isset($row['date_creation']) and !empty($row['date_creation']))
|
|
|
|
{
|
|
|
|
list($year, $month, $day) = explode('-', $row['date_creation']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
list($year, $month, $day) = array('', 0, 0);
|
|
|
|
}
|
|
|
|
get_day_list('date_creation_day', $day);
|
|
|
|
get_month_list('date_creation_month', $month);
|
|
|
|
$template->assign_vars(array('DATE_CREATION_YEAR_VALUE' => $year));
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
$query = '
|
|
|
|
SELECT category_id, uppercats
|
|
|
|
FROM '.IMAGE_CATEGORY_TABLE.' AS ic
|
|
|
|
INNER JOIN '.CATEGORIES_TABLE.' AS c
|
|
|
|
ON c.id = ic.category_id
|
|
|
|
WHERE image_id = '.$_GET['image_id'].'
|
|
|
|
;';
|
|
|
|
$result = pwg_query($query);
|
|
|
|
|
|
|
|
if (mysql_num_rows($result) > 1)
|
|
|
|
{
|
|
|
|
$template->assign_block_vars('links', array());
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($row = mysql_fetch_array($result))
|
|
|
|
{
|
|
|
|
$name =
|
|
|
|
get_cat_display_name_cache(
|
|
|
|
$row['uppercats'],
|
|
|
|
PHPWG_ROOT_PATH.'admin.php?page=cat_modify&cat_id=',
|
|
|
|
false
|
|
|
|
);
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
if ($row['category_id'] == $storage_category_id)
|
|
|
|
{
|
|
|
|
$template->assign_vars(array('STORAGE_CATEGORY' => $name));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$template->assign_block_vars('links.category', array('NAME' => $name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// jump to link
|
|
|
|
//
|
|
|
|
// 1. find all linked categories that are reachable for the current user.
|
|
|
|
// 2. if a category is available in the URL, use it if reachable
|
|
|
|
// 3. if URL category not available or reachable, use the first reachable
|
|
|
|
// linked category
|
|
|
|
// 4. if no category reachable, no jumpto link
|
|
|
|
|
|
|
|
$query = '
|
|
|
|
SELECT category_id
|
|
|
|
FROM '.IMAGE_CATEGORY_TABLE.'
|
|
|
|
WHERE image_id = '.$_GET['image_id'].'
|
|
|
|
;';
|
2006-03-15 23:44:35 +01:00
|
|
|
|
2005-08-18 19:59:00 +02:00
|
|
|
$authorizeds = array_diff(
|
|
|
|
array_from_query($query, 'category_id'),
|
2006-03-15 23:44:35 +01:00
|
|
|
explode(
|
|
|
|
',',
|
|
|
|
calculate_permissions($user['id'], $user['status'])
|
|
|
|
)
|
2005-08-18 19:59:00 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
if (isset($_GET['cat_id'])
|
|
|
|
and in_array($_GET['cat_id'], $authorizeds))
|
|
|
|
{
|
2006-07-26 23:00:16 +02:00
|
|
|
$url_img = make_picture_url(
|
2006-03-15 23:44:35 +01:00
|
|
|
array(
|
|
|
|
'image_id' => $_GET['image_id'],
|
2006-03-22 02:01:47 +01:00
|
|
|
'image_file' => $image_file,
|
2006-03-15 23:44:35 +01:00
|
|
|
'category' => $_GET['cat_id'],
|
|
|
|
)
|
|
|
|
);
|
2005-08-18 19:59:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach ($authorizeds as $category)
|
|
|
|
{
|
2006-07-26 23:00:16 +02:00
|
|
|
$url_img = make_picture_url(
|
2006-03-15 23:44:35 +01:00
|
|
|
array(
|
|
|
|
'image_id' => $_GET['image_id'],
|
2006-03-22 02:01:47 +01:00
|
|
|
'image_file' => $image_file,
|
2006-03-15 23:44:35 +01:00
|
|
|
'category' => $category,
|
|
|
|
)
|
|
|
|
);
|
2005-08-18 19:59:00 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($url_img))
|
|
|
|
{
|
|
|
|
$template->assign_block_vars(
|
|
|
|
'jumpto',
|
|
|
|
array(
|
|
|
|
'URL' => $url_img
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2006-03-22 02:01:47 +01:00
|
|
|
|
2003-08-30 17:54:37 +02:00
|
|
|
// associate to another category ?
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
$query = '
|
|
|
|
SELECT id,name,uppercats,global_rank
|
|
|
|
FROM '.CATEGORIES_TABLE.'
|
|
|
|
INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON id = category_id
|
|
|
|
WHERE image_id = '.$_GET['image_id'].'
|
2006-04-05 00:29:35 +02:00
|
|
|
AND id != '.$storage_category_id.'
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
;';
|
2005-08-17 16:25:38 +02:00
|
|
|
display_select_cat_wrapper($query, array(), 'associated_option');
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
|
|
|
|
$result = pwg_query($query);
|
|
|
|
$associateds = array($storage_category_id);
|
|
|
|
while ($row = mysql_fetch_array($result))
|
2004-02-02 01:55:18 +01:00
|
|
|
{
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
array_push($associateds, $row['id']);
|
2004-02-02 01:55:18 +01:00
|
|
|
}
|
- on picture.php, related categories under the element are displayed in
global_rank order
- when adding a new virtual category, initializes its global_rank
- bug fixed : in admin/cat_list, false next rank
- in admin/cat_modify, complete directory is calculated only if category is
not virtual
- admin/picture_modify rewritten : graphically nearer to admin/cat_modify,
virtual associations are back
- update_category partially rewritten : take an array of categories in
parameter, becomes optionnaly recursive, use the set_random_representant
function, set a random representant for categories with elements and no
representant
- bug fixed : on a search results screen, elements belonging to more than 1
category were shown more than once
- bug fixed : in admin/cat_modify, changing a value in a textefield and
hitting enter was setting a new random representant
git-svn-id: http://piwigo.org/svn/trunk@635 68402e56-0260-453c-a942-63ccdbb3a9ee
2004-12-05 22:28:40 +01:00
|
|
|
$query = '
|
|
|
|
SELECT id,name,uppercats,global_rank
|
|
|
|
FROM '.CATEGORIES_TABLE.'
|
|
|
|
WHERE id NOT IN ('.implode(',', $associateds).')
|
|
|
|
;';
|
2005-08-17 16:25:38 +02:00
|
|
|
display_select_cat_wrapper($query, array(), 'dissociated_option');
|
2005-08-14 01:09:54 +02:00
|
|
|
|
2004-12-06 23:28:32 +01:00
|
|
|
// representing
|
|
|
|
$query = '
|
|
|
|
SELECT id,name,uppercats,global_rank
|
|
|
|
FROM '.CATEGORIES_TABLE.'
|
|
|
|
WHERE representative_picture_id = '.$_GET['image_id'].'
|
|
|
|
;';
|
2005-08-17 16:25:38 +02:00
|
|
|
display_select_cat_wrapper($query, array(), 'elected_option');
|
2004-12-06 23:28:32 +01:00
|
|
|
|
|
|
|
$query = '
|
|
|
|
SELECT id,name,uppercats,global_rank
|
|
|
|
FROM '.CATEGORIES_TABLE.'
|
2005-08-14 01:09:54 +02:00
|
|
|
WHERE representative_picture_id != '.$_GET['image_id'].'
|
|
|
|
OR representative_picture_id IS NULL
|
2004-12-06 23:28:32 +01:00
|
|
|
;';
|
2005-08-17 16:25:38 +02:00
|
|
|
display_select_cat_wrapper($query, array(), 'dismissed_option');
|
|
|
|
|
2003-08-30 17:54:37 +02:00
|
|
|
//----------------------------------------------------------- sending html code
|
2005-08-17 16:25:38 +02:00
|
|
|
|
2004-09-01 01:05:19 +02:00
|
|
|
$template->assign_var_from_handle('ADMIN_CONTENT', 'picture_modify');
|
2004-02-12 00:20:38 +01:00
|
|
|
?>
|