| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/sources/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/sources/group_setting.php |
<?php
if ($wo['loggedin'] == false) {
header("Location: " . $wo['config']['site_url']);
exit();
}
if (empty($_GET['group'])) {
header("Location: " . $wo['config']['site_url']);
exit();
}
if ($wo['config']['groups'] == 0) {
header("Location: " . Wo_SeoLink('index.php?link1=welcome'));
exit();
}
$wo['setting']['admin'] = false;
if (isset($_GET['group']) && !empty($_GET['group'])) {
if (Wo_GroupExists($_GET['group']) === false) {
header("Location: " . Wo_SeoLink('index.php?link1=404'));
exit();
}
$group_id = Wo_GroupIdFromGroupname($_GET['group']);
$wo['setting']['admin'] = true;
if (empty($group_id)) {
header("Location: " . $wo['config']['site_url']);
exit();
}
$wo['setting'] = Wo_GroupData($group_id);
}
if (Wo_IsGroupOnwer($group_id) === false) {
if (Wo_IsAdmin() === false && Wo_IsModerator() === false) {
header("Location: " . $wo['config']['site_url']);
exit();
}
}
$array = array(
'general-setting' => 'general',
'privacy-setting' => 'privacy',
'avatar-setting' => 'avatar',
'group-members' => 'members',
'analytics' => 'analytics',
'delete-group' => 'delete_group'
);
$s_page = 'general';
if (!empty($_GET['link3']) && in_array($_GET['link3'], array_keys($array))) {
$s_page = $array[$_GET['link3']];
}
if ($wo['setting']['user_id'] != $wo['user']['id'] && !Wo_IsCanGroupUpdate($wo['setting']['id'], $s_page)) {
$allowed = Wo_GetAllowedGroupPages($group_id);
if (!empty($allowed) && !empty($allowed[0])) {
$_GET['link3'] = $allowed[0];
} else {
header("Location: " . $wo['config']['site_url']);
exit();
}
}
$wo['description'] = $wo['config']['siteDesc'];
$wo['keywords'] = $wo['config']['siteKeywords'];
$wo['page'] = 'group_setting';
$wo['title'] = $wo['lang']['setting'];
$wo['content'] = Wo_LoadPage('group-setting/content');