clipbucket/upload/videos.php
2014-09-23 12:07:50 +00:00

116 lines
No EOL
2.7 KiB
PHP

<?php
/*
***************************************************************
| Copyright (c) 2007-2009 Clip-Bucket.com. All rights reserved.
| @ Author : ArslanHassan
| @ Software : ClipBucket , © PHPBucket.com
***************************************************************
*/
define("THIS_PAGE",'videos');
define("PARENT_PAGE",'videos');
require 'includes/config.inc.php';
$pages->page_redir();
$userquery->perm_check('view_videos',true);
// echo "<pre>";
// var_dump($GLOBALS);
// echo "</pre>";
//Setting Sort
$sort = $_GET['sort'];
$child_ids = "";
if($_GET['cat'] && $_GET['cat']!='all')
{
$childs = $cbvid->get_sub_categories(mysql_clean($_GET['cat']));
$child_ids = array();
if($childs)
foreach($childs as $child)
{
$child_ids[] = $child['category_id'];
$subchilds = $childs = $cbvid->get_sub_categories($child['category_id']);
if($subchilds)
foreach($subchilds as $subchild)
{
$child_ids[] = $subchild['category_id'];
}
}
$child_ids[] = mysql_clean($_GET['cat']);
}
//$vid_cond = array('category'=>$child_ids,'date_span'=>$_GET['time'],'sub_cats');
//Thanks to florin.mandache
$vid_cond = array('category'=>$child_ids,'date_span'=>mysql_clean($_GET['time']),'sub_cats');
switch($sort)
{
case "most_recent":
default:
{
$vid_cond['order'] = " date_added DESC ";
}
break;
case "most_viewed":
{
$vid_cond['order'] = " views DESC ";
$vid_cond['date_span_column'] = 'last_viewed';
}
break;
case "most_viewed":
{
$vid_cond['order'] = " views DESC ";
}
break;
case "featured":
{
$vid_cond['featured'] = "yes";
}
break;
case "top_rated":
{
$vid_cond['order'] = " rating DESC, rated_by DESC";
}
break;
case "most_commented":
{
$vid_cond['order'] = " comments_count DESC";
}
break;
}
//Getting Video List
$page = mysql_clean($_GET['page']);
$get_limit = create_query_limit($page,VLISTPP);
$vlist = $vid_cond;
$count_query = $vid_cond;
$vlist['limit'] = $get_limit;
$videos = get_videos($vlist);
Assign('videos', $videos);
//Collecting Data for Pagination
$vcount = $vid_cond;
$counter = get_counter('video',$count_query);
if(!$counter)
{
$vcount['count_only'] = true;
$total_rows = get_videos($vcount);
$total_pages = count_pages($total_rows,VLISTPP);
$counter = $total_rows;
update_counter('video',$count_query,$counter);
}
$total_pages = count_pages($counter,VLISTPP);
//Pagination
$link==NULL;
$extra_params=NULL;
$tag='<li><a #params#>#page#</a><li>';
$pages->paginate($total_pages,$page,$link,$extra_params,$tag);
subtitle(lang('videos'));
//Displaying The Template
template_files('videos.html');
display_it();
?>