mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
82 lines
2.5 KiB
PHP
82 lines
2.5 KiB
PHP
<?php
|
|
// +-----------------------------------------------------------------------+
|
|
// | This file is part of Piwigo. |
|
|
// | |
|
|
// | For copyright and license information, please view the COPYING.txt |
|
|
// | file that was distributed with this source code. |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
if( !defined("PHPWG_ROOT_PATH") )
|
|
{
|
|
die ("Hacking attempt!");
|
|
}
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Basic checks |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
check_status(ACCESS_ADMINISTRATOR);
|
|
|
|
check_input_parameter('cat_id', $_GET, false, PATTERN_ID);
|
|
check_input_parameter('image_id', $_GET, false, PATTERN_ID);
|
|
|
|
$admin_photo_base_url = get_root_url().'admin.php?page=photo-'.$_GET['image_id'];
|
|
|
|
// retrieving direct information about picture
|
|
$page['image'] = get_image_infos($_GET['image_id'], true);
|
|
|
|
if (isset($_GET['cat_id']))
|
|
{
|
|
$query = '
|
|
SELECT *
|
|
FROM '.CATEGORIES_TABLE.'
|
|
WHERE id = '.$_GET['cat_id'].'
|
|
;';
|
|
$category = pwg_db_fetch_assoc(pwg_query($query));
|
|
}
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Tabs |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
|
|
|
|
$page['tab'] = 'properties';
|
|
|
|
if (isset($_GET['tab']))
|
|
{
|
|
$page['tab'] = $_GET['tab'];
|
|
}
|
|
|
|
$tabsheet = new tabsheet();
|
|
$tabsheet->set_id('photo');
|
|
$tabsheet->select($page['tab']);
|
|
$tabsheet->assign();
|
|
|
|
$template->assign(
|
|
array(
|
|
'ADMIN_PAGE_TITLE' => l10n('Edit photo').' <span class="image-id">#'.$_GET['image_id'].'</span>',
|
|
)
|
|
);
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Load the tab |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
if ('properties' == $page['tab'])
|
|
{
|
|
include(PHPWG_ROOT_PATH.'admin/picture_modify.php');
|
|
}
|
|
elseif ('coi' == $page['tab'])
|
|
{
|
|
include(PHPWG_ROOT_PATH.'admin/picture_coi.php');
|
|
}
|
|
elseif ('formats' == $page['tab'] && $conf['enable_formats'])
|
|
{
|
|
include(PHPWG_ROOT_PATH.'admin/picture_formats.php');
|
|
}
|
|
else
|
|
{
|
|
include(PHPWG_ROOT_PATH.'admin/photo_'.$page['tab'].'.php');
|
|
}
|
|
?>
|