62 lines
1.9 KiB
PHP
62 lines
1.9 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
||
|
* This is NOT a freeware, use is subject to license terms
|
||
|
*
|
||
|
* $Id: home_spacecp.php 33660 2013-07-29 07:51:05Z nemohou $
|
||
|
*/
|
||
|
|
||
|
if(!defined('IN_DISCUZ')) {
|
||
|
exit('Access Denied');
|
||
|
}
|
||
|
|
||
|
require_once libfile('function/spacecp');
|
||
|
require_once libfile('function/magic');
|
||
|
|
||
|
$acs = array('space', 'doing', 'upload', 'comment', 'blog', 'album', 'relatekw', 'common', 'class',
|
||
|
'swfupload', 'poke', 'friend', 'eccredit', 'favorite', 'follow',
|
||
|
'avatar', 'profile', 'theme', 'feed', 'privacy', 'pm', 'share', 'invite','sendmail',
|
||
|
'credit', 'usergroup', 'domain', 'click','magic', 'top', 'videophoto', 'index', 'plugin', 'search', 'promotion');
|
||
|
|
||
|
$_GET['ac'] = $ac = (empty($_GET['ac']) || !in_array($_GET['ac'], $acs))?'profile':$_GET['ac'];
|
||
|
$op = empty($_GET['op'])?'':$_GET['op'];
|
||
|
if(!in_array($ac, array('doing', 'upload', 'blog', 'album'))) {
|
||
|
$_G['mnid'] = 'mn_common';
|
||
|
}
|
||
|
|
||
|
|
||
|
if($ac != 'comment' || !$_G['group']['allowcomment']) {
|
||
|
if(empty($_G['uid'])) {
|
||
|
if($_SERVER['REQUEST_METHOD'] == 'GET') {
|
||
|
dsetcookie('_refer', rawurlencode($_SERVER['REQUEST_URI']));
|
||
|
} else {
|
||
|
dsetcookie('_refer', rawurlencode('home.php?mod=spacecp&ac='.$ac));
|
||
|
}
|
||
|
showmessage('to_login', '', array(), array('showmsg' => true, 'login' => 1));
|
||
|
}
|
||
|
|
||
|
$space = getuserbyuid($_G['uid']);
|
||
|
if(empty($space)) {
|
||
|
showmessage('space_does_not_exist');
|
||
|
}
|
||
|
space_merge($space, 'field_home');
|
||
|
|
||
|
if(($space['status'] == -1 || in_array($space['groupid'], array(4, 5, 6))) && $ac != 'usergroup') {
|
||
|
showmessage('space_has_been_locked');
|
||
|
}
|
||
|
}
|
||
|
$actives = array($ac => ' class="a"');
|
||
|
|
||
|
list($seccodecheck, $secqaacheck) = seccheck('publish');
|
||
|
|
||
|
$navtitle = lang('core', 'title_setup');
|
||
|
if(lang('core', 'title_memcp_'.$ac)) {
|
||
|
$navtitle = lang('core', 'title_memcp_'.$ac);
|
||
|
}
|
||
|
|
||
|
$_G['disabledwidthauto'] = 0;
|
||
|
|
||
|
require_once libfile('spacecp/'.$ac, 'include');
|
||
|
|
||
|
?>
|