2009-08-25 12:16:42 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
****************************************************************************************************
|
|
|
|
| Copyright (c) 2007-2008 Clip-Bucket.com. All rights reserved. |
|
|
|
|
| @ Author : ArslanHassan |
|
|
|
|
| @ Software : ClipBucket , © PHPBucket.com |
|
|
|
|
****************************************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once '../includes/admin_config.php';
|
2009-11-05 21:50:39 +00:00
|
|
|
$userquery->login_check('video_moderation');
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2009-11-05 21:50:39 +00:00
|
|
|
//Getting Video List
|
|
|
|
$page = mysql_clean($_GET['page']);
|
|
|
|
$get_limit = create_query_limit($page,RESULTS);
|
|
|
|
$videos = $cbvid->action->get_flagged_objects($get_limit);
|
|
|
|
Assign('videos', $videos);
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2009-11-05 21:50:39 +00:00
|
|
|
//Collecting Data for Pagination
|
|
|
|
$total_rows = $cbvid->action->count_flagged_objects();
|
|
|
|
$total_pages = count_pages($total_rows,VLISTPP);
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2009-11-05 21:50:39 +00:00
|
|
|
//Pagination
|
|
|
|
$pages->paginate($total_pages,$page);
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2009-11-05 21:50:39 +00:00
|
|
|
template_files('video_manager.php');
|
|
|
|
display_it();
|
2009-08-25 12:16:42 +00:00
|
|
|
?>
|