67 lines
2.7 KiB
PHP
67 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: admin.php 34285 2013-12-13 03:39:35Z hypowang $
|
|
*/
|
|
|
|
define('IN_ADMINCP', TRUE);
|
|
define('NOROBOT', TRUE);
|
|
define('ADMINSCRIPT', basename(__FILE__));
|
|
define('CURSCRIPT', 'admin');
|
|
define('HOOKTYPE', 'hookscript');
|
|
define('APPTYPEID', 0);
|
|
|
|
|
|
require './source/class/class_core.php';
|
|
require './source/function/function_misc.php';
|
|
require './source/function/function_forum.php';
|
|
require './source/function/function_admincp.php';
|
|
require './source/function/function_cache.php';
|
|
|
|
$discuz = C::app();
|
|
$discuz->init_cron = false;
|
|
$discuz->init();
|
|
|
|
$admincp = new discuz_admincp();
|
|
$admincp->core = & $discuz;
|
|
$admincp->init();
|
|
|
|
|
|
$admincp_actions_founder = array('templates', 'db', 'founder', 'postsplit', 'threadsplit', 'cloudaddons', 'optimizer');
|
|
$admincp_actions_normal = array('index', 'setting', 'members', 'admingroup', 'usergroups', 'usertag',
|
|
'forums', 'threadtypes', 'threads', 'moderate', 'attach', 'smilies', 'recyclebin', 'recyclebinpost', 'prune', 'grid',
|
|
'styles', 'addons', 'plugins', 'tasks', 'magics', 'medals', 'google', 'announce', 'faq', 'ec',
|
|
'tradelog', 'jswizard', 'project', 'counter', 'misc', 'adv', 'logs', 'tools', 'portalperm', 'blogrecyclebin',
|
|
'checktools', 'search', 'article', 'block', 'blockstyle', 'blockxml', 'portalcategory', 'blogcategory', 'albumcategory', 'topic', 'credits',
|
|
'doing', 'group', 'blog', 'feed', 'album', 'pic', 'comment', 'share', 'click', 'specialuser', 'postsplit', 'threadsplit', 'report',
|
|
'district', 'diytemplate', 'verify', 'nav', 'domain', 'postcomment', 'tag', 'connect', 'card', 'portalpermission', 'collection', 'membersplit', 'makehtml');
|
|
|
|
$action = preg_replace('/[^\[A-Za-z0-9_\]]/', '', getgpc('action'));
|
|
$operation = preg_replace('/[^\[A-Za-z0-9_\]]/', '', getgpc('operation'));
|
|
$do = preg_replace('/[^\[A-Za-z0-9_\]]/', '', getgpc('do'));
|
|
$frames = preg_replace('/[^\[A-Za-z0-9_\]]/', '', getgpc('frames'));
|
|
lang('admincp');
|
|
$lang = & $_G['lang']['admincp'];
|
|
$page = max(1, intval(getgpc('page')));
|
|
$isfounder = $admincp->isfounder;
|
|
|
|
if(empty($action) || $frames != null) {
|
|
$admincp->show_admincp_main();
|
|
} elseif($action == 'logout') {
|
|
$admincp->do_admin_logout();
|
|
dheader("Location: ./index.php");
|
|
} elseif(in_array($action, $admincp_actions_normal) || ($admincp->isfounder && in_array($action, $admincp_actions_founder))) {
|
|
if($admincp->allow($action, $operation, $do) || $action == 'index') {
|
|
require $admincp->admincpfile($action);
|
|
} else {
|
|
cpheader();
|
|
cpmsg('action_noaccess', '', 'error');
|
|
}
|
|
} else {
|
|
cpheader();
|
|
cpmsg('action_noaccess', '', 'error');
|
|
}
|
|
?>
|