Deconstructed videos part from helper class
This commit is contained in:
parent
04e6d39559
commit
c9d50c1b4a
1 changed files with 51 additions and 2 deletions
|
@ -12,9 +12,58 @@
|
|||
define("THIS_PAGE",'videos');
|
||||
define("PARENT_PAGE",'videos');
|
||||
require 'includes/config.inc.php';
|
||||
global $hlp;
|
||||
global $cbvid, $pages;
|
||||
$pages->page_redir();
|
||||
$userquery->perm_check('view_videos',true);
|
||||
$hlp->videos();
|
||||
$sort = $_GET['sort'];
|
||||
$child_ids = "";
|
||||
$assign_arry = array();
|
||||
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'=>mysql_clean($_GET['time']),'sub_cats');
|
||||
$vid_cond = build_sort($sort, $vid_cond);
|
||||
//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_arry['videos'] = $videos;
|
||||
$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);
|
||||
if (!$subtitle) {
|
||||
$subtitle = 'Videos';
|
||||
}
|
||||
subtitle(lang($subtitle));
|
||||
array_val_assign($assign_arry);
|
||||
template_files('videos.html');
|
||||
display_it();
|
||||
?>
|
Loading…
Add table
Reference in a new issue