54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
![]() |
<?php
|
|||
|
/*
|
|||
|
*************************************************************
|
|||
|
| Copyright (c) 2007-2010 Clip-Bucket.com. All rights reserved.
|
|||
|
| @ Author : ArslanHassan
|
|||
|
| @ Software : ClipBucket , <EFBFBD> PHPBucket.com
|
|||
|
*************************************************************
|
|||
|
*/
|
|||
|
|
|||
|
define("THIS_PAGE",'edit_group');
|
|||
|
define("PARENT_PAGE",'groups');
|
|||
|
|
|||
|
require 'includes/config.inc.php';
|
|||
|
$userquery->logincheck();
|
|||
|
$udetails = $userquery->get_user_details(userid());
|
|||
|
assign('user',$udetails);
|
|||
|
assign('p',$userquery->get_user_profile($udetails['userid']));
|
|||
|
|
|||
|
$gid = mysql_clean($_GET['gid']);
|
|||
|
//get group details
|
|||
|
$gdetails = $cbgroup->get_group_details($gid);
|
|||
|
|
|||
|
$gArray =
|
|||
|
array
|
|||
|
(
|
|||
|
'group' => $gdetails,
|
|||
|
'groupid' => $gid,
|
|||
|
'uid' => userid(),
|
|||
|
'user' => $userquery->udetails,
|
|||
|
'checkowner' => 'yes'
|
|||
|
);
|
|||
|
|
|||
|
if(!$cbgroup->is_admin($gArray) && !has_access('admin_access',true))
|
|||
|
{
|
|||
|
e(lang("you_cant_edit_group"));
|
|||
|
$Cbucket->show_page = false;
|
|||
|
}else{
|
|||
|
|
|||
|
//Updating Video Details
|
|||
|
if(isset($_POST['update_group']))
|
|||
|
{
|
|||
|
$_POST['group_id'] = $gid;
|
|||
|
$cbgroup->update_group();
|
|||
|
$gdetails = $cbgroup->get_group_details($gid);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
assign('group',$gdetails);
|
|||
|
}
|
|||
|
|
|||
|
subtitle(lang("grp_edit_grp_title"));
|
|||
|
template_files('edit_group.html');
|
|||
|
display_it();
|
|||
|
?>
|