2009-08-25 12:16:42 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2009-10-14 21:09:54 +00:00
|
|
|
********************************************************************
|
|
|
|
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved.
|
|
|
|
| @ Author : ArslanHassan
|
|
|
|
| @ Software : ClipBucket , © PHPBucket.com
|
|
|
|
********************************************************************
|
2009-08-25 12:16:42 +00:00
|
|
|
*/
|
2009-09-28 05:23:50 +00:00
|
|
|
define("THIS_PAGE",'videos');
|
2009-08-25 12:16:42 +00:00
|
|
|
require 'includes/config.inc.php';
|
|
|
|
$pages->page_redir();
|
2009-11-04 10:27:40 +00:00
|
|
|
$userquery->perm_check('view_videos',true);
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2009-09-28 05:23:50 +00:00
|
|
|
//Getting Video List
|
|
|
|
$page = mysql_clean($_GET['page']);
|
|
|
|
$get_limit = create_query_limit($page,VLISTPP);
|
|
|
|
$videos = $db->select("video",'*',$cond,$get_limit,"date_added DESC");
|
|
|
|
Assign('videos', $videos);
|
2009-08-25 12:16:42 +00:00
|
|
|
|
2009-09-28 05:23:50 +00:00
|
|
|
//Collecting Data for Pagination
|
2009-10-14 21:09:54 +00:00
|
|
|
$total_rows = $db->count('video','*',$cond);
|
|
|
|
$total_pages = count_pages($total_rows,VLISTPP);
|
2009-08-25 12:16:42 +00:00
|
|
|
|
|
|
|
//Pagination
|
2009-09-28 05:23:50 +00:00
|
|
|
$pages->paginate($total_pages,$page);
|
2009-08-25 12:16:42 +00:00
|
|
|
|
|
|
|
|
2009-09-28 05:23:50 +00:00
|
|
|
//Displaying The Template
|
|
|
|
template_files('videos.html');
|
|
|
|
display_it();
|
2009-08-25 12:16:42 +00:00
|
|
|
?>
|
|
|
|
|