clipbucket/upload/admin_area/edit_photo.php

53 lines
1.3 KiB
PHP
Raw Normal View History

2013-10-07 12:17:06 +00:00
<?php
/*
****************************************************************************************************
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved. |
| @ Author : ArslanHassan |
| @ Software : ClipBucket , © PHPBucket.com |
****************************************************************************************************
*/
require'../includes/admin_config.php';
$userquery->admin_login_check();
$userquery->login_check('video_moderation');
$pages->page_redir();
2014-04-15 07:17:09 +00:00
/* Assigning page and subpage */
if(!defined('MAIN_PAGE')){
define('MAIN_PAGE', 'Photos');
}
if(!defined('SUB_PAGE')){
define('SUB_PAGE', 'Edit Photo');
}
2013-10-07 12:17:06 +00:00
$id = mysql_clean($_GET['photo']);
if(isset($_POST['update']))
{
$cbphoto->update_photo();
}
//Performing Actions
if($_GET['mode']!='')
{
$cbphoto->photo_actions($_GET['mode'],$id);
}
$p = $cbphoto->get_photo($id);
$p['user'] = $p['userid'];
assign('data',$p);
$requiredFields = $cbphoto->load_required_forms($p);
$otherFields = $cbphoto->load_other_forms($p);
assign('requiredFields',$requiredFields);
assign('otherFields',$otherFields);
subtitle("Edit Photo");
template_files('edit_photo.html');
display_it();
?>