clipbucket/upload/channels.php

69 lines
1.8 KiB
PHP
Raw Permalink Normal View History

2013-10-07 12:17:06 +00:00
<?php
2016-02-26 09:04:37 +00:00
/**
* File: Channels
* Description: Used to display list of channels (users)
* @author: Arslan Hassan, Saqib Razzaq
* @since: 2007
* @website: clip-bucket.com
* @modified: Feb 26, 2016 ClipBucket 2.8.1 [ Saqib Razzaq ]
*/
define("THIS_PAGE",'channels');
define("PARENT_PAGE",'channels');
require 'includes/config.inc.php';
$pages->page_redir();
$userquery->perm_check('view_channels',true);
2016-05-31 19:44:33 +05:00
global $pages;
$assign_arry = array();
$sort = $_GET['sort'];
$u_cond = array('category'=>mysql_clean($_GET['cat']),'date_span'=>mysql_clean($_GET['time']));
switch($sort) {
case "most_recent":
default:
$u_cond['order'] = " doj DESC ";
break;
case "most_viewed":
$u_cond['order'] = " profile_hits DESC ";
break;
case "featured":
$u_cond['featured'] = "yes";
break;
case "top_rated":
$u_cond['order'] = " rating DESC";
break;
case "most_commented":
$u_cond['order'] = " total_comments DESC";
break;
}
$page = mysql_clean($_GET['page']);
$get_limit = create_query_limit($page,CLISTPP);
$count_query = $ulist = $u_cond;
$ulist['limit'] = $get_limit;
$users = get_users($ulist);
$counter = get_counter('channel',$count_query);
if(!$counter) {
//Collecting Data for Pagination
$ucount = $u_cond;
$ucount['count_only'] = true;
$total_rows = get_users($ucount);
$counter = $total_rows;
update_counter('channel',$count_query,$counter);
}
$total_pages = count_pages($counter,CLISTPP);
//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 = 'Channels';
}
subtitle(lang($subtitle));
Assign('users', $users);
template_files('channels.html');
2016-02-26 09:04:37 +00:00
display_it();
2013-10-07 12:17:06 +00:00
?>