38 lines
No EOL
935 B
PHP
38 lines
No EOL
935 B
PHP
<?php
|
||
/*
|
||
****************************************************************
|
||
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved.
|
||
| @ Author : ArslanHassan
|
||
| @ Software : ClipBucket , <20> PHPBucket.com
|
||
****************************************************************
|
||
*/
|
||
|
||
define("THIS_PAGE","view_group_members");
|
||
define("PARENT_PAGE","channels");
|
||
|
||
require 'includes/config.inc.php';
|
||
$pages->page_redir();
|
||
|
||
$url = mysql_clean($_GET['url']);
|
||
|
||
|
||
$details = $cbgroup->group_details_url($url);
|
||
|
||
//Group links
|
||
$group_links = $cbgroup->group_links($details);
|
||
assign('group_links',$group_links);
|
||
|
||
assign('group',$details);
|
||
|
||
if($details)
|
||
{
|
||
//Getting List of all videos
|
||
$videos = $cbgroup->get_members($details['group_id'],"yes");
|
||
assign("users",$videos);
|
||
assign("mode","view_members");
|
||
subtitle($details['group_name']);
|
||
}
|
||
|
||
template_files('view_group.html');
|
||
display_it();
|
||
?>
|