clipbucket/upload/admin_area/edit_photo.php
2016-05-06 15:43:08 +05:00

48 lines
No EOL
1.3 KiB
PHP

<?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();
/* Assigning page and subpage */
if(!defined('MAIN_PAGE')){
define('MAIN_PAGE', 'Photos');
}
if(!defined('SUB_PAGE')){
define('SUB_PAGE', 'Edit Photo');
}
$id = mysql_clean($_GET['photo']);
if(isset($_POST['photo_id'])) {
#pr($_POST,true);
$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();
?>