2003-05-09 14:42:42 +02:00
|
|
|
<?php
|
2004-02-07 20:36:44 +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 |
|
2007-01-09 02:30:02 +01:00
|
|
|
// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
|
2004-02-07 20:36:44 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
2004-11-06 22:12:59 +01:00
|
|
|
// | branch : BSF (Best So Far)
|
2007-01-09 02:30:02 +01:00
|
|
|
// | file : $Id$
|
2004-02-07 20:36:44 +01: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. |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2004-05-20 23:22:44 +02:00
|
|
|
|
2004-02-19 01:31:09 +01:00
|
|
|
define('PHPWG_ROOT_PATH','./');
|
2004-11-21 13:42:55 +01:00
|
|
|
include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
|
2006-03-15 23:44:35 +01:00
|
|
|
include(PHPWG_ROOT_PATH.'include/section_init.inc.php');
|
2006-11-17 05:26:10 +01:00
|
|
|
include_once(PHPWG_ROOT_PATH.'include/functions_picture.inc.php');
|
2006-02-23 06:12:32 +01:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
// Check Access and exit when user status is not ok
|
2006-03-09 23:46:28 +01:00
|
|
|
check_status(ACCESS_GUEST);
|
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
// access authorization check
|
|
|
|
if (isset($page['category']))
|
2006-02-12 22:52:16 +01:00
|
|
|
{
|
2006-03-15 23:44:35 +01:00
|
|
|
check_restrictions($page['category']);
|
2006-02-12 22:52:16 +01:00
|
|
|
}
|
2006-03-15 23:44:35 +01:00
|
|
|
|
2006-02-12 22:52:16 +01:00
|
|
|
// if this image_id doesn't correspond to this category, an error message is
|
|
|
|
// displayed, and execution is stopped
|
2006-03-15 23:44:35 +01:00
|
|
|
if (!in_array($page['image_id'], $page['items']))
|
2006-02-12 22:52:16 +01:00
|
|
|
{
|
2006-04-28 07:12:25 +02:00
|
|
|
page_not_found('The requested image does not belong to this image set',
|
|
|
|
duplicate_index_url() );
|
2006-02-12 22:52:16 +01:00
|
|
|
}
|
|
|
|
|
2006-11-01 06:54:35 +01:00
|
|
|
// add default event handler for rendering element content
|
|
|
|
add_event_handler('render_element_content', 'default_picture_content',
|
|
|
|
EVENT_HANDLER_PRIORITY_NEUTRAL, 2);
|
|
|
|
trigger_action('loc_begin_picture');
|
|
|
|
|
|
|
|
// this is the default handler that generates the display for the element
|
|
|
|
function default_picture_content($content, $element_info)
|
|
|
|
{
|
|
|
|
if ( !empty($content) )
|
|
|
|
{// someone hooked us - so we skip;
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
if (!isset($element_info['image_url']))
|
|
|
|
{ // nothing to do
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
global $user;
|
|
|
|
$my_template = new Template(PHPWG_ROOT_PATH.'template/'.$user['template'],
|
|
|
|
$user['theme'] );
|
|
|
|
$my_template->set_filenames( array('default_content'=>'picture_content.tpl') );
|
|
|
|
|
|
|
|
if (isset($element_info['high_url']))
|
|
|
|
{
|
|
|
|
$uuid = uniqid(rand());
|
|
|
|
$my_template->assign_block_vars(
|
|
|
|
'high',
|
|
|
|
array(
|
|
|
|
'U_HIGH' => $element_info['high_url'],
|
|
|
|
'UUID' => $uuid,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$my_template->assign_vars( array(
|
|
|
|
'SRC_IMG' => $element_info['image_url'],
|
|
|
|
'ALT_IMG' => $element_info['file'],
|
2006-11-07 04:37:57 +01:00
|
|
|
'WIDTH_IMG' => @$element_info['scaled_width'],
|
|
|
|
'HEIGHT_IMG' => @$element_info['scaled_height'],
|
2006-11-01 06:54:35 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
return $my_template->parse( 'default_content', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | initialization |
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
|
2006-02-12 22:52:16 +01:00
|
|
|
$page['rank_of'] = array_flip($page['items']);
|
|
|
|
|
|
|
|
// caching first_rank, last_rank, current_rank in the displayed
|
|
|
|
// section. This should also help in readability.
|
|
|
|
$page['first_rank'] = 0;
|
|
|
|
$page['last_rank'] = count($page['items']) - 1;
|
2006-03-15 23:44:35 +01:00
|
|
|
$page['current_rank'] = $page['rank_of'][ $page['image_id'] ];
|
2006-02-12 22:52:16 +01:00
|
|
|
|
|
|
|
// caching current item : readability purpose
|
2006-03-15 23:44:35 +01:00
|
|
|
$page['current_item'] = $page['image_id'];
|
2005-11-16 22:18:56 +01:00
|
|
|
|
2006-02-12 22:52:16 +01:00
|
|
|
if ($page['current_rank'] != $page['first_rank'])
|
2005-11-16 22:18:56 +01:00
|
|
|
{
|
2006-03-17 05:13:19 +01:00
|
|
|
// caching first & previous item : readability purpose
|
2006-02-12 22:52:16 +01:00
|
|
|
$page['previous_item'] = $page['items'][ $page['current_rank'] - 1 ];
|
2006-03-17 05:13:19 +01:00
|
|
|
$page['first_item'] = $page['items'][ $page['first_rank'] ];
|
2005-11-16 22:18:56 +01:00
|
|
|
}
|
|
|
|
|
2006-02-12 22:52:16 +01:00
|
|
|
if ($page['current_rank'] != $page['last_rank'])
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
2006-03-17 05:13:19 +01:00
|
|
|
// caching next & last item : readability purpose
|
2006-02-12 22:52:16 +01:00
|
|
|
$page['next_item'] = $page['items'][ $page['current_rank'] + 1 ];
|
2006-03-17 05:13:19 +01:00
|
|
|
$page['last_item'] = $page['items'][ $page['last_rank'] ];
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
2006-02-12 22:52:16 +01:00
|
|
|
|
2006-07-26 23:00:16 +02:00
|
|
|
$url_up = duplicate_index_url(
|
2006-03-15 23:44:35 +01:00
|
|
|
array(
|
|
|
|
'start' =>
|
|
|
|
floor($page['current_rank'] / $user['nb_image_page'])
|
|
|
|
* $user['nb_image_page']
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'start',
|
|
|
|
)
|
|
|
|
);
|
2005-09-03 18:36:05 +02:00
|
|
|
|
2006-07-26 23:00:16 +02:00
|
|
|
$url_self = duplicate_picture_url();
|
2005-09-03 18:36:05 +02:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | actions |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2005-09-03 18:36:05 +02:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
/**
|
|
|
|
* Actions are favorite adding, user comment deletion, setting the picture
|
|
|
|
* as representative of the current category...
|
|
|
|
*
|
|
|
|
* Actions finish by a redirection
|
|
|
|
*/
|
2006-02-14 02:14:31 +01:00
|
|
|
|
2006-11-01 06:54:35 +01:00
|
|
|
if (isset($_GET['action']))
|
2006-02-14 02:14:31 +01:00
|
|
|
{
|
2006-03-15 23:44:35 +01:00
|
|
|
switch ($_GET['action'])
|
2006-02-14 02:14:31 +01:00
|
|
|
{
|
2006-03-15 23:44:35 +01:00
|
|
|
case 'add_to_favorites' :
|
2006-02-14 02:14:31 +01:00
|
|
|
{
|
2006-03-15 23:44:35 +01:00
|
|
|
$query = '
|
|
|
|
INSERT INTO '.FAVORITES_TABLE.'
|
|
|
|
(image_id,user_id)
|
|
|
|
VALUES
|
|
|
|
('.$page['image_id'].','.$user['id'].')
|
|
|
|
;';
|
|
|
|
pwg_query($query);
|
|
|
|
|
|
|
|
redirect($url_self);
|
2006-03-17 05:13:19 +01:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
break;
|
2006-02-14 02:14:31 +01:00
|
|
|
}
|
2006-03-15 23:44:35 +01:00
|
|
|
case 'remove_from_favorites' :
|
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
DELETE FROM '.FAVORITES_TABLE.'
|
|
|
|
WHERE user_id = '.$user['id'].'
|
|
|
|
AND image_id = '.$page['image_id'].'
|
|
|
|
;';
|
|
|
|
pwg_query($query);
|
2006-02-14 02:14:31 +01:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
if ('favorites' == $page['section'])
|
|
|
|
{
|
|
|
|
redirect($url_up);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
redirect($url_self);
|
|
|
|
}
|
2006-03-17 05:13:19 +01:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'set_as_representative' :
|
2006-02-14 02:14:31 +01:00
|
|
|
{
|
2006-11-01 06:54:35 +01:00
|
|
|
if (is_admin() and !is_adviser() and isset($page['category']))
|
2006-03-15 23:44:35 +01:00
|
|
|
{
|
2006-02-14 02:14:31 +01:00
|
|
|
$query = '
|
2006-03-15 23:44:35 +01:00
|
|
|
UPDATE '.CATEGORIES_TABLE.'
|
|
|
|
SET representative_picture_id = '.$page['image_id'].'
|
|
|
|
WHERE id = '.$page['category'].'
|
|
|
|
;';
|
|
|
|
pwg_query($query);
|
|
|
|
}
|
2006-03-17 05:13:19 +01:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
redirect($url_self);
|
2006-03-17 05:13:19 +01:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'toggle_metadata' :
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'add_to_caddie' :
|
|
|
|
{
|
2006-03-27 23:19:31 +02:00
|
|
|
fill_caddie(array($page['image_id']));
|
2006-03-15 23:44:35 +01:00
|
|
|
redirect($url_self);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'rate' :
|
|
|
|
{
|
2006-03-28 03:26:37 +02:00
|
|
|
include_once(PHPWG_ROOT_PATH.'include/functions_rate.inc.php');
|
2006-04-28 06:38:36 +02:00
|
|
|
rate_picture($page['image_id'],
|
|
|
|
isset($_POST['rate']) ? $_POST['rate'] : $_GET['rate'] );
|
2006-03-15 23:44:35 +01:00
|
|
|
redirect($url_self);
|
|
|
|
}
|
|
|
|
case 'delete_comment' :
|
|
|
|
{
|
|
|
|
if (isset($_GET['comment_to_delete'])
|
|
|
|
and is_numeric($_GET['comment_to_delete'])
|
2006-11-01 06:54:35 +01:00
|
|
|
and is_admin() and !is_adviser() )
|
2006-03-15 23:44:35 +01:00
|
|
|
{
|
|
|
|
$query = '
|
|
|
|
DELETE FROM '.COMMENTS_TABLE.'
|
|
|
|
WHERE id = '.$_GET['comment_to_delete'].'
|
2006-02-14 02:14:31 +01:00
|
|
|
;';
|
2006-03-15 23:44:35 +01:00
|
|
|
pwg_query( $query );
|
|
|
|
}
|
|
|
|
|
|
|
|
redirect($url_self);
|
|
|
|
}
|
|
|
|
}
|
2006-02-14 02:14:31 +01:00
|
|
|
}
|
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
// incrementation of the number of hits, we do this only if no action
|
|
|
|
$query = '
|
|
|
|
UPDATE
|
|
|
|
'.IMAGES_TABLE.'
|
|
|
|
SET hit = hit+1
|
|
|
|
WHERE id = '.$page['image_id'].'
|
|
|
|
;';
|
|
|
|
pwg_query($query);
|
2006-02-14 02:14:31 +01:00
|
|
|
|
2005-03-12 11:27:43 +01:00
|
|
|
//---------------------------------------------------------- related categories
|
|
|
|
$query = '
|
|
|
|
SELECT category_id,uppercats,commentable,global_rank
|
|
|
|
FROM '.IMAGE_CATEGORY_TABLE.'
|
|
|
|
INNER JOIN '.CATEGORIES_TABLE.' ON category_id = id
|
2006-03-15 23:44:35 +01:00
|
|
|
WHERE image_id = '.$page['image_id'].'
|
2006-12-21 22:38:20 +01:00
|
|
|
'.get_sql_condition_FandF
|
|
|
|
(
|
|
|
|
array
|
|
|
|
(
|
|
|
|
'forbidden_categories' => 'category_id',
|
|
|
|
'visible_categories' => 'category_id'
|
|
|
|
),
|
|
|
|
'AND'
|
|
|
|
).'
|
2005-03-12 11:27:43 +01:00
|
|
|
;';
|
|
|
|
$result = pwg_query($query);
|
|
|
|
$related_categories = array();
|
|
|
|
while ($row = mysql_fetch_array($result))
|
|
|
|
{
|
|
|
|
array_push($related_categories, $row);
|
|
|
|
}
|
|
|
|
usort($related_categories, 'global_rank_compare');
|
2006-03-17 05:13:19 +01:00
|
|
|
//-------------------------first, prev, current, next & last picture management
|
2004-03-30 00:40:21 +02:00
|
|
|
$picture = array();
|
2004-02-21 12:02:06 +01:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
$ids = array($page['image_id']);
|
2006-02-12 22:52:16 +01:00
|
|
|
if (isset($page['previous_item']))
|
2004-08-05 19:31:36 +02:00
|
|
|
{
|
2006-02-12 22:52:16 +01:00
|
|
|
array_push($ids, $page['previous_item']);
|
2006-03-17 05:13:19 +01:00
|
|
|
array_push($ids, $page['first_item']);
|
2004-08-05 19:31:36 +02:00
|
|
|
}
|
2006-02-12 22:52:16 +01:00
|
|
|
if (isset($page['next_item']))
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
2006-02-12 22:52:16 +01:00
|
|
|
array_push($ids, $page['next_item']);
|
2006-03-17 05:13:19 +01:00
|
|
|
array_push($ids, $page['last_item']);
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
2004-02-02 01:55:18 +01:00
|
|
|
|
2004-07-26 22:42:48 +02:00
|
|
|
$query = '
|
2006-02-12 22:52:16 +01:00
|
|
|
SELECT *
|
|
|
|
FROM '.IMAGES_TABLE.'
|
|
|
|
WHERE id IN ('.implode(',', $ids).')
|
|
|
|
;';
|
2004-02-02 01:55:18 +01:00
|
|
|
|
2006-02-12 22:52:16 +01:00
|
|
|
$result = pwg_query($query);
|
2004-03-30 00:40:21 +02:00
|
|
|
|
2006-11-07 04:37:57 +01:00
|
|
|
while ($row = mysql_fetch_assoc($result))
|
2004-02-21 12:02:06 +01:00
|
|
|
{
|
2006-02-12 22:52:16 +01:00
|
|
|
if (isset($page['previous_item']) and $row['id'] == $page['previous_item'])
|
2004-08-05 19:31:36 +02:00
|
|
|
{
|
2006-03-17 05:13:19 +01:00
|
|
|
$i = 'previous';
|
2004-08-05 19:31:36 +02:00
|
|
|
}
|
2006-02-12 22:52:16 +01:00
|
|
|
else if (isset($page['next_item']) and $row['id'] == $page['next_item'])
|
2004-08-05 19:31:36 +02:00
|
|
|
{
|
2006-02-12 22:52:16 +01:00
|
|
|
$i = 'next';
|
2004-08-05 19:31:36 +02:00
|
|
|
}
|
2006-03-17 05:13:19 +01:00
|
|
|
else if (isset($page['first_item']) and $row['id'] == $page['first_item'])
|
|
|
|
{
|
|
|
|
$i = 'first';
|
|
|
|
}
|
|
|
|
else if (isset($page['last_item']) and $row['id'] == $page['last_item'])
|
|
|
|
{
|
|
|
|
$i = 'last';
|
|
|
|
}
|
2006-02-12 22:52:16 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$i = 'current';
|
|
|
|
}
|
2006-02-28 05:28:06 +01:00
|
|
|
|
2006-11-07 04:37:57 +01:00
|
|
|
$picture[$i] = $row;
|
2004-08-05 19:31:36 +02:00
|
|
|
|
|
|
|
$picture[$i]['is_picture'] = false;
|
|
|
|
if (in_array(get_extension($row['file']), $conf['picture_ext']))
|
|
|
|
{
|
|
|
|
$picture[$i]['is_picture'] = true;
|
|
|
|
}
|
2006-02-28 05:28:06 +01:00
|
|
|
|
2006-11-01 06:54:35 +01:00
|
|
|
// ------ build element_path and element_url
|
2006-11-17 05:26:10 +01:00
|
|
|
$picture[$i]['element_path'] = get_element_path($picture[$i]);
|
|
|
|
$picture[$i]['element_url'] = get_element_url($picture[$i]);
|
|
|
|
|
|
|
|
// ------ build image_path and image_url
|
|
|
|
if ($i=='current' or $i=='next')
|
2004-08-05 19:31:36 +02:00
|
|
|
{
|
2006-11-17 05:26:10 +01:00
|
|
|
$picture[$i]['image_path'] = get_image_path( $picture[$i] );
|
|
|
|
$picture[$i]['image_url'] = get_image_url( $picture[$i] );
|
2004-08-05 19:31:36 +02:00
|
|
|
}
|
2006-11-01 06:54:35 +01:00
|
|
|
|
2006-11-17 05:26:10 +01:00
|
|
|
if ($i=='current')
|
2004-08-05 19:31:36 +02:00
|
|
|
{
|
2006-11-17 05:26:10 +01:00
|
|
|
if ( $picture[$i]['is_picture'] )
|
2004-09-24 10:37:29 +02:00
|
|
|
{
|
2006-11-17 05:26:10 +01:00
|
|
|
if ( $user['enabled_high']=='true' )
|
2004-09-24 10:37:29 +02:00
|
|
|
{
|
2006-11-17 05:26:10 +01:00
|
|
|
$hi_url=get_high_url($picture[$i]);
|
|
|
|
if ( !empty($hi_url) )
|
2006-03-21 02:27:21 +01:00
|
|
|
{
|
2006-11-17 05:26:10 +01:00
|
|
|
$picture[$i]['high_url'] = $hi_url;
|
|
|
|
$picture[$i]['download_url'] = get_download_url('h',$picture[$i]);
|
2006-03-21 02:27:21 +01:00
|
|
|
}
|
2004-09-24 10:37:29 +02:00
|
|
|
}
|
|
|
|
}
|
2006-11-01 06:54:35 +01:00
|
|
|
else
|
2006-11-17 05:26:10 +01:00
|
|
|
{ // not a pic - need download link
|
|
|
|
$picture[$i]['download_url'] = get_download_url('e',$picture[$i]);
|
2006-11-01 06:54:35 +01:00
|
|
|
}
|
2004-08-05 19:31:36 +02:00
|
|
|
}
|
|
|
|
|
2006-11-07 04:37:57 +01:00
|
|
|
$picture[$i]['thumbnail'] = get_thumbnail_url($row);
|
2006-02-28 05:28:06 +01:00
|
|
|
|
2004-03-30 00:40:21 +02:00
|
|
|
if ( !empty( $row['name'] ) )
|
2004-02-02 01:55:18 +01:00
|
|
|
{
|
2004-08-05 19:31:36 +02:00
|
|
|
$picture[$i]['name'] = $row['name'];
|
2004-02-02 01:55:18 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-17 05:26:10 +01:00
|
|
|
$file_wo_ext = get_filename_wo_extension($row['file']);
|
2004-08-05 19:31:36 +02:00
|
|
|
$picture[$i]['name'] = str_replace('_', ' ', $file_wo_ext);
|
2004-02-02 01:55:18 +01:00
|
|
|
}
|
|
|
|
|
2006-07-26 23:00:16 +02:00
|
|
|
$picture[$i]['url'] = duplicate_picture_url(
|
2006-03-15 23:44:35 +01:00
|
|
|
array(
|
|
|
|
'image_id' => $row['id'],
|
2006-03-21 02:27:21 +01:00
|
|
|
'image_file' => $row['file'],
|
2006-03-15 23:44:35 +01:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
'start',
|
|
|
|
)
|
|
|
|
);
|
2006-03-17 05:13:19 +01:00
|
|
|
|
|
|
|
if ('previous'==$i and $page['previous_item']==$page['first_item'])
|
|
|
|
{
|
|
|
|
$picture['first'] = $picture[$i];
|
|
|
|
}
|
|
|
|
if ('next'==$i and $page['next_item']==$page['last_item'])
|
|
|
|
{
|
|
|
|
$picture['last'] = $picture[$i];
|
|
|
|
}
|
2004-11-16 00:13:24 +01:00
|
|
|
}
|
2004-02-02 01:55:18 +01:00
|
|
|
|
2006-11-01 06:54:35 +01:00
|
|
|
// calculation of width and height for the current picture
|
|
|
|
if (empty($picture['current']['width']))
|
|
|
|
{
|
|
|
|
$taille_image = @getimagesize($picture['current']['image_path']);
|
|
|
|
if ($taille_image!==false)
|
|
|
|
{
|
|
|
|
$picture['current']['width'] = $taille_image[0];
|
|
|
|
$picture['current']['height']= $taille_image[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($picture['current']['width']))
|
|
|
|
{
|
|
|
|
list($picture['current']['scaled_width'],$picture['current']['scaled_height']) =
|
|
|
|
get_picture_size(
|
|
|
|
$picture['current']['width'],
|
|
|
|
$picture['current']['height'],
|
|
|
|
@$user['maxwidth'],
|
|
|
|
@$user['maxheight']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2006-02-12 22:52:16 +01:00
|
|
|
$url_admin =
|
2006-03-21 02:27:21 +01:00
|
|
|
get_root_url().'admin.php?page=picture_modify'
|
2006-03-15 23:44:35 +01:00
|
|
|
.'&cat_id='.(isset($page['category']) ? $page['category'] : '')
|
|
|
|
.'&image_id='.$page['image_id']
|
|
|
|
;
|
2004-09-23 18:42:11 +02:00
|
|
|
|
2006-03-23 02:49:04 +01:00
|
|
|
$url_slide = add_url_params(
|
2006-03-21 02:27:21 +01:00
|
|
|
$picture['current']['url'],
|
2006-03-23 02:49:04 +01:00
|
|
|
array( 'slideshow'=>$conf['slideshow_period'] )
|
|
|
|
);
|
2003-08-30 17:54:37 +02:00
|
|
|
|
2004-02-21 12:02:06 +01:00
|
|
|
$title = $picture['current']['name'];
|
|
|
|
$refresh = 0;
|
2006-02-14 02:14:31 +01:00
|
|
|
if ( isset( $_GET['slideshow'] ) and isset($page['next_item']) )
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
2006-04-21 23:09:47 +02:00
|
|
|
// $redirect_msg, $refresh, $url_link and $title are required for creating an automated
|
|
|
|
// refresh page in header.tpl
|
2004-03-30 00:40:21 +02:00
|
|
|
$refresh= $_GET['slideshow'];
|
2006-03-23 02:49:04 +01:00
|
|
|
$url_link = add_url_params(
|
|
|
|
$picture['next']['url'],
|
|
|
|
array('slideshow'=>$refresh)
|
|
|
|
);
|
2006-04-21 23:09:47 +02:00
|
|
|
$redirect_msg = nl2br(l10n('redirect_msg'));
|
2007-01-09 02:30:02 +01:00
|
|
|
$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
2004-02-21 12:02:06 +01:00
|
|
|
|
2006-02-17 03:41:57 +01:00
|
|
|
$title_nb = ($page['current_rank'] + 1).'/'.$page['cat_nb_images'];
|
2003-05-09 14:42:42 +02:00
|
|
|
|
2004-09-23 18:42:11 +02:00
|
|
|
// metadata
|
2006-07-26 23:00:16 +02:00
|
|
|
$url_metadata = duplicate_picture_url();
|
2006-11-01 06:54:35 +01:00
|
|
|
|
|
|
|
// do we have a plugin that can show metadata for something else than images?
|
|
|
|
$metadata_showable = trigger_event('get_element_metadata_available',
|
|
|
|
(
|
|
|
|
($conf['show_exif'] or $conf['show_iptc'])
|
|
|
|
and isset($picture['current']['image_path'])
|
|
|
|
),
|
|
|
|
$picture['current']['path'] );
|
|
|
|
if ($metadata_showable)
|
2004-09-23 18:42:11 +02:00
|
|
|
{
|
2006-03-22 02:01:47 +01:00
|
|
|
if ( !isset($_GET['metadata']) )
|
|
|
|
{
|
2006-03-23 02:49:04 +01:00
|
|
|
$url_metadata = add_url_params( $url_metadata, array('metadata'=>null) );
|
2006-03-22 02:01:47 +01:00
|
|
|
}
|
2007-01-09 02:30:02 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
|
|
|
|
}
|
2004-09-23 18:42:11 +02:00
|
|
|
}
|
2006-11-01 06:54:35 +01:00
|
|
|
|
|
|
|
$page['body_id'] = 'thePicturePage';
|
|
|
|
|
2007-01-18 00:08:41 +01:00
|
|
|
//------------------------------------------------------------ light slideshow
|
|
|
|
// Warning !!! Warning !!! Warning !!!
|
|
|
|
// Notice for plugins writers check if you have to act on the active template
|
|
|
|
// like this if ( $page['slideshow'] ) { return false; }
|
|
|
|
//
|
|
|
|
if ( isset($_GET['slideshow']) and $conf['light_slideshow'] )
|
|
|
|
{
|
|
|
|
$page['display_tpl'] = 'slideshow.tpl';
|
|
|
|
$page['slideshow'] = true;
|
|
|
|
unset($picture['current']['high_url']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$page['display_tpl'] = 'picture.tpl';
|
|
|
|
$page['slideshow'] = false;
|
|
|
|
}
|
2006-11-01 06:54:35 +01:00
|
|
|
// maybe someone wants a special display (call it before page_header so that they
|
|
|
|
// can add stylesheets)
|
|
|
|
$element_content = trigger_event('render_element_content',
|
|
|
|
'', $picture['current'] );
|
|
|
|
|
|
|
|
if ( isset($picture['next']['image_url'])
|
|
|
|
and isset($picture['next']['is_picture']) )
|
2004-09-23 18:42:11 +02:00
|
|
|
{
|
2006-11-01 06:54:35 +01:00
|
|
|
$template->assign_block_vars( 'prefetch',
|
|
|
|
array (
|
|
|
|
'URL' => $picture['next']['image_url']
|
|
|
|
)
|
|
|
|
);
|
2004-09-23 18:42:11 +02:00
|
|
|
}
|
2007-01-18 00:08:41 +01:00
|
|
|
|
|
|
|
$template->set_filenames(array( 'picture' => $page['display_tpl'] ));
|
|
|
|
|
2004-09-23 18:42:11 +02:00
|
|
|
|
2006-02-12 22:52:16 +01:00
|
|
|
//------------------------------------------------------- navigation management
|
2006-03-17 05:13:19 +01:00
|
|
|
foreach ( array('first','previous','next','last') as $which_image )
|
2006-02-01 03:46:26 +01:00
|
|
|
{
|
2006-03-17 05:13:19 +01:00
|
|
|
if (isset($picture[$which_image]))
|
|
|
|
{
|
|
|
|
$template->assign_block_vars(
|
|
|
|
$which_image,
|
|
|
|
array(
|
|
|
|
'TITLE_IMG' => $picture[$which_image]['name'],
|
|
|
|
'IMG' => $picture[$which_image]['thumbnail'],
|
|
|
|
'U_IMG' => $picture[$which_image]['url'],
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2006-02-01 03:46:26 +01:00
|
|
|
}
|
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
$template->assign_vars(
|
|
|
|
array(
|
2006-04-05 22:55:26 +02:00
|
|
|
'SECTION_TITLE' => $page['title'],
|
|
|
|
'PICTURE_TITLE' => $picture['current']['name'],
|
2006-03-15 23:44:35 +01:00
|
|
|
'PHOTO' => $title_nb,
|
|
|
|
'TITLE' => $picture['current']['name'],
|
2006-11-01 06:54:35 +01:00
|
|
|
'ELEMENT_CONTENT' => $element_content,
|
2006-03-15 23:44:35 +01:00
|
|
|
|
|
|
|
'LEVEL_SEPARATOR' => $conf['level_separator'],
|
|
|
|
|
2006-07-26 23:00:16 +02:00
|
|
|
'U_HOME' => make_index_url(),
|
2006-03-15 23:44:35 +01:00
|
|
|
'U_UP' => $url_up,
|
|
|
|
'U_METADATA' => $url_metadata,
|
|
|
|
'U_ADMIN' => $url_admin,
|
|
|
|
'U_SLIDESHOW'=> $url_slide,
|
|
|
|
'U_ADD_COMMENT' => $url_self,
|
|
|
|
)
|
|
|
|
);
|
2005-07-17 16:58:42 +02:00
|
|
|
|
|
|
|
if ($conf['show_picture_name_on_title'])
|
|
|
|
{
|
|
|
|
$template->assign_block_vars('title', array());
|
|
|
|
}
|
|
|
|
|
2004-09-24 10:37:29 +02:00
|
|
|
//------------------------------------------------------- upper menu management
|
2006-03-15 23:44:35 +01:00
|
|
|
|
2006-11-01 06:54:35 +01:00
|
|
|
// download link
|
|
|
|
if ( isset($picture['current']['download_url']) )
|
2004-09-24 10:37:29 +02:00
|
|
|
{
|
2005-12-19 19:58:38 +01:00
|
|
|
$template->assign_block_vars(
|
|
|
|
'download',
|
2006-03-15 23:44:35 +01:00
|
|
|
array(
|
2006-11-01 06:54:35 +01:00
|
|
|
'U_DOWNLOAD' => $picture['current']['download_url']
|
2006-03-15 23:44:35 +01:00
|
|
|
)
|
|
|
|
);
|
2004-09-23 18:42:11 +02:00
|
|
|
}
|
2006-03-15 23:44:35 +01:00
|
|
|
|
2005-08-14 13:55:35 +02:00
|
|
|
// button to set the current picture as representative
|
2006-03-15 23:44:35 +01:00
|
|
|
if (is_admin() and isset($page['category']))
|
2005-08-14 13:55:35 +02:00
|
|
|
{
|
|
|
|
$template->assign_block_vars(
|
|
|
|
'representative',
|
|
|
|
array(
|
2006-03-23 02:49:04 +01:00
|
|
|
'URL' => add_url_params($url_self,
|
|
|
|
array('action'=>'set_as_representative')
|
|
|
|
)
|
2005-08-14 13:55:35 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2005-09-03 18:36:05 +02:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
// caddie button
|
2006-03-09 00:14:53 +01:00
|
|
|
if (is_admin())
|
2005-09-03 18:36:05 +02:00
|
|
|
{
|
|
|
|
$template->assign_block_vars(
|
|
|
|
'caddie',
|
|
|
|
array(
|
2006-03-23 02:49:04 +01:00
|
|
|
'URL' => add_url_params($url_self,
|
|
|
|
array('action'=>'add_to_caddie')
|
|
|
|
)
|
2006-03-15 23:44:35 +01:00
|
|
|
)
|
2005-09-03 18:36:05 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
// favorite manipulation
|
|
|
|
if (!$user['is_the_guest'])
|
2004-09-23 18:42:11 +02:00
|
|
|
{
|
|
|
|
// verify if the picture is already in the favorite of the user
|
2006-03-15 23:44:35 +01:00
|
|
|
$query = '
|
|
|
|
SELECT COUNT(*) AS nb_fav
|
|
|
|
FROM '.FAVORITES_TABLE.'
|
|
|
|
WHERE image_id = '.$page['image_id'].'
|
|
|
|
AND user_id = '.$user['id'].'
|
|
|
|
;';
|
|
|
|
$result = pwg_query($query);
|
|
|
|
$row = mysql_fetch_array($result);
|
2006-03-17 05:13:19 +01:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
if ($row['nb_fav'] == 0)
|
2003-05-09 14:42:42 +02:00
|
|
|
{
|
2004-09-23 18:42:11 +02:00
|
|
|
$template->assign_block_vars(
|
|
|
|
'favorite',
|
|
|
|
array(
|
2006-03-21 02:27:21 +01:00
|
|
|
'FAVORITE_IMG' => get_root_url().get_themeconf('icon_dir').'/favorite.png',
|
2006-03-15 23:44:35 +01:00
|
|
|
'FAVORITE_HINT' => $lang['add_favorites_hint'],
|
|
|
|
'FAVORITE_ALT' => $lang['add_favorites_alt'],
|
2006-03-23 02:49:04 +01:00
|
|
|
'U_FAVORITE' => add_url_params(
|
|
|
|
$url_self,
|
|
|
|
array('action'=>'add_to_favorites')
|
|
|
|
),
|
2006-03-15 23:44:35 +01:00
|
|
|
)
|
|
|
|
);
|
2004-09-23 18:42:11 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$template->assign_block_vars(
|
|
|
|
'favorite',
|
|
|
|
array(
|
2006-03-21 02:27:21 +01:00
|
|
|
'FAVORITE_IMG' => get_root_url().get_themeconf('icon_dir').'/del_favorite.png',
|
2006-03-15 23:44:35 +01:00
|
|
|
'FAVORITE_HINT' => $lang['del_favorites_hint'],
|
|
|
|
'FAVORITE_ALT' => $lang['del_favorites_alt'],
|
2006-03-23 02:49:04 +01:00
|
|
|
'U_FAVORITE' => add_url_params(
|
|
|
|
$url_self,
|
|
|
|
array('action'=>'remove_from_favorites')
|
|
|
|
)
|
2006-03-15 23:44:35 +01:00
|
|
|
)
|
|
|
|
);
|
2003-05-09 14:42:42 +02:00
|
|
|
}
|
|
|
|
}
|
2004-09-23 18:42:11 +02:00
|
|
|
//------------------------------------ admin link for information modifications
|
2006-03-09 00:14:53 +01:00
|
|
|
if ( is_admin() )
|
2004-09-23 18:42:11 +02:00
|
|
|
{
|
|
|
|
$template->assign_block_vars('admin', array());
|
|
|
|
}
|
2004-02-21 12:02:06 +01:00
|
|
|
|
2003-05-09 14:42:42 +02:00
|
|
|
//--------------------------------------------------------- picture information
|
2006-12-02 17:46:15 +01:00
|
|
|
$header_infos = array(); //for html header use
|
2004-03-20 01:52:37 +01:00
|
|
|
// legend
|
2004-08-05 19:31:36 +02:00
|
|
|
if (isset($picture['current']['comment'])
|
|
|
|
and !empty($picture['current']['comment']))
|
2004-03-20 01:52:37 +01:00
|
|
|
{
|
2004-08-05 19:31:36 +02:00
|
|
|
$template->assign_block_vars(
|
|
|
|
'legend',
|
|
|
|
array(
|
2005-03-12 11:27:43 +01:00
|
|
|
'COMMENT_IMG' => nl2br($picture['current']['comment'])
|
2004-08-05 19:31:36 +02:00
|
|
|
));
|
2006-12-02 17:46:15 +01:00
|
|
|
$header_infos['COMMENT'] = strip_tags($picture['current']['comment']);
|
2004-08-05 19:31:36 +02:00
|
|
|
}
|
2004-09-23 18:42:11 +02:00
|
|
|
|
2005-08-21 13:32:12 +02:00
|
|
|
$infos = array();
|
|
|
|
|
|
|
|
// author
|
|
|
|
if (!empty($picture['current']['author']))
|
2003-07-28 23:30:19 +02:00
|
|
|
{
|
2005-08-21 13:32:12 +02:00
|
|
|
$infos['INFO_AUTHOR'] =
|
2006-01-20 15:34:37 +01:00
|
|
|
// FIXME because of search engine partial rewrite, giving the author
|
|
|
|
// name threw GET is not supported anymore. This feature should come
|
|
|
|
// back later, with a better design
|
|
|
|
// '<a href="'.
|
|
|
|
// PHPWG_ROOT_PATH.'category.php?cat=search'.
|
|
|
|
// '&search=author:'.$picture['current']['author']
|
|
|
|
// .'">'.$picture['current']['author'].'</a>';
|
|
|
|
$picture['current']['author'];
|
2006-12-02 17:46:15 +01:00
|
|
|
$header_infos['INFO_AUTHOR'] = $picture['current']['author'];
|
2005-08-21 13:32:12 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$infos['INFO_AUTHOR'] = l10n('N/A');
|
2003-07-28 23:30:19 +02:00
|
|
|
}
|
2005-04-26 16:24:08 +02:00
|
|
|
|
2005-08-21 13:32:12 +02:00
|
|
|
// creation date
|
|
|
|
if (!empty($picture['current']['date_creation']))
|
- 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-02-23 03:30:19 +01:00
|
|
|
$val = format_date($picture['current']['date_creation']);
|
2006-07-26 23:00:16 +02:00
|
|
|
$url = make_index_url(
|
2006-03-21 02:27:21 +01:00
|
|
|
array(
|
|
|
|
'chronology_field'=>'created',
|
|
|
|
'chronology_style'=>'monthly',
|
|
|
|
'chronology_view'=>'list',
|
|
|
|
'chronology_date' => explode('-', $picture['current']['date_creation'])
|
|
|
|
)
|
|
|
|
);
|
2006-04-08 21:42:11 +02:00
|
|
|
$infos['INFO_CREATION_DATE'] = '<a href="'.$url.'" rel="nofollow">'.$val.'</a>';
|
2005-08-21 13:32:12 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$infos['INFO_CREATION_DATE'] = l10n('N/A');
|
|
|
|
}
|
|
|
|
|
|
|
|
// date of availability
|
2006-02-23 03:30:19 +01:00
|
|
|
$val = format_date($picture['current']['date_available'], 'mysql_datetime');
|
2006-07-26 23:00:16 +02:00
|
|
|
$url = make_index_url(
|
2006-03-21 02:27:21 +01:00
|
|
|
array(
|
|
|
|
'chronology_field'=>'posted',
|
|
|
|
'chronology_style'=>'monthly',
|
|
|
|
'chronology_view'=>'list',
|
|
|
|
'chronology_date'=>explode('-', substr($picture['current']['date_available'],0,10))
|
|
|
|
)
|
|
|
|
);
|
2006-04-08 21:42:11 +02:00
|
|
|
$infos['INFO_POSTED_DATE'] = '<a href="'.$url.'" rel="nofollow">'.$val.'</a>';
|
2005-08-21 13:32:12 +02:00
|
|
|
|
|
|
|
// size in pixels
|
2006-11-01 06:54:35 +01:00
|
|
|
if ($picture['current']['is_picture'] and isset($picture['current']['width']) )
|
2005-08-21 13:32:12 +02:00
|
|
|
{
|
2006-11-01 06:54:35 +01:00
|
|
|
if ($picture['current']['scaled_width'] !== $picture['current']['width'] )
|
- 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-21 13:32:12 +02:00
|
|
|
$infos['INFO_DIMENSIONS'] =
|
2006-11-01 06:54:35 +01:00
|
|
|
'<a href="'.$picture['current']['image_url'].'" title="'.
|
2005-08-21 13:32:12 +02:00
|
|
|
l10n('Original dimensions').'">'.
|
2006-11-01 06:54:35 +01:00
|
|
|
$picture['current']['width'].'*'.$picture['current']['height'].'</a>';
|
- 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
|
|
|
}
|
|
|
|
else
|
2004-10-21 23:17:07 +02:00
|
|
|
{
|
2006-11-01 06:54:35 +01:00
|
|
|
$infos['INFO_DIMENSIONS'] =
|
|
|
|
$picture['current']['width'].'*'.$picture['current']['height'];
|
2004-11-13 14:43:53 +01:00
|
|
|
}
|
2004-10-21 23:17:07 +02:00
|
|
|
}
|
2005-08-21 13:32:12 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$infos['INFO_DIMENSIONS'] = l10n('N/A');
|
|
|
|
}
|
|
|
|
|
|
|
|
// filesize
|
|
|
|
if (!empty($picture['current']['filesize']))
|
|
|
|
{
|
|
|
|
$infos['INFO_FILESIZE'] =
|
|
|
|
sprintf(l10n('%d Kb'), $picture['current']['filesize']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$infos['INFO_FILESIZE'] = l10n('N/A');
|
|
|
|
}
|
|
|
|
|
|
|
|
// number of visits
|
|
|
|
$infos['INFO_VISITS'] = $picture['current']['hit'];
|
|
|
|
|
|
|
|
// file
|
|
|
|
$infos['INFO_FILE'] = $picture['current']['file'];
|
|
|
|
|
2006-04-03 00:26:19 +02:00
|
|
|
// tags
|
|
|
|
$query = '
|
|
|
|
SELECT id, name, url_name
|
|
|
|
FROM '.IMAGE_TAG_TABLE.'
|
|
|
|
INNER JOIN '.TAGS_TABLE.' ON tag_id = id
|
|
|
|
WHERE image_id = '.$page['image_id'].'
|
|
|
|
;';
|
|
|
|
$result = pwg_query($query);
|
|
|
|
|
|
|
|
if (mysql_num_rows($result) > 0)
|
2005-08-21 13:32:12 +02:00
|
|
|
{
|
2006-04-03 00:26:19 +02:00
|
|
|
$tags = array();
|
2006-12-02 17:46:15 +01:00
|
|
|
$tag_names = array();
|
2006-04-08 21:42:11 +02:00
|
|
|
|
2006-04-03 00:26:19 +02:00
|
|
|
while ($row = mysql_fetch_array($result))
|
|
|
|
{
|
|
|
|
array_push(
|
|
|
|
$tags,
|
|
|
|
'<a href="'
|
2006-07-26 23:00:16 +02:00
|
|
|
.make_index_url(
|
2006-04-03 00:26:19 +02:00
|
|
|
array(
|
|
|
|
'tags' => array(
|
|
|
|
array(
|
|
|
|
'id' => $row['id'],
|
|
|
|
'url_name' => $row['url_name'],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
.'">'.$row['name'].'</a>'
|
|
|
|
);
|
2006-12-02 17:46:15 +01:00
|
|
|
array_push( $tag_names, $row['name'] );
|
2006-04-03 00:26:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$infos['INFO_TAGS'] = implode(', ', $tags);
|
2006-12-02 17:46:15 +01:00
|
|
|
$header_infos['INFO_TAGS'] = implode(', ', $tag_names);
|
2005-08-21 13:32:12 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-04-03 00:26:19 +02:00
|
|
|
$infos['INFO_TAGS'] = l10n('N/A');
|
2005-08-21 13:32:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$template->assign_vars($infos);
|
|
|
|
|
|
|
|
// related categories
|
|
|
|
foreach ($related_categories as $category)
|
|
|
|
{
|
|
|
|
$template->assign_block_vars(
|
|
|
|
'category',
|
|
|
|
array(
|
|
|
|
'LINE' => count($related_categories) > 3
|
|
|
|
? get_cat_display_name_cache($category['uppercats'])
|
|
|
|
: get_cat_display_name_from_id($category['category_id'])
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2005-04-26 16:24:08 +02:00
|
|
|
|
2004-09-23 18:42:11 +02:00
|
|
|
//slideshow end
|
2006-03-15 23:44:35 +01:00
|
|
|
if (isset($_GET['slideshow']))
|
2004-09-23 18:42:11 +02:00
|
|
|
{
|
2006-03-15 23:44:35 +01:00
|
|
|
if (!is_numeric($_GET['slideshow']))
|
2004-08-31 00:00:46 +02:00
|
|
|
{
|
2006-03-15 23:44:35 +01:00
|
|
|
$_GET['slideshow'] = $conf['slideshow_period'];
|
2004-08-31 00:00:46 +02:00
|
|
|
}
|
2005-04-26 16:24:08 +02:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
$template->assign_block_vars(
|
|
|
|
'stop_slideshow',
|
|
|
|
array(
|
|
|
|
'U_SLIDESHOW' => $picture['current']['url'],
|
|
|
|
)
|
|
|
|
);
|
2005-08-21 13:32:12 +02:00
|
|
|
}
|
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// | sub pages |
|
|
|
|
// +-----------------------------------------------------------------------+
|
2006-02-14 02:14:31 +01:00
|
|
|
|
2006-03-15 23:44:35 +01:00
|
|
|
include(PHPWG_ROOT_PATH.'include/picture_rate.inc.php');
|
|
|
|
include(PHPWG_ROOT_PATH.'include/picture_comment.inc.php');
|
2007-01-11 06:10:16 +01:00
|
|
|
if ($metadata_showable and isset($_GET['metadata']))
|
2006-03-28 03:26:37 +02:00
|
|
|
{
|
|
|
|
include(PHPWG_ROOT_PATH.'include/picture_metadata.inc.php');
|
|
|
|
}
|
2003-05-09 14:42:42 +02:00
|
|
|
//------------------------------------------------------------ log informations
|
2007-01-17 00:39:39 +01:00
|
|
|
pwg_log($picture['current']['id']);
|
2004-02-02 01:55:18 +01:00
|
|
|
|
2006-12-02 17:46:15 +01:00
|
|
|
include(PHPWG_ROOT_PATH.'include/page_header.php');
|
2005-01-13 11:18:49 +01:00
|
|
|
$template->parse('picture');
|
2004-02-22 03:43:13 +01:00
|
|
|
include(PHPWG_ROOT_PATH.'include/page_tail.php');
|
2004-02-12 00:20:38 +01:00
|
|
|
?>
|