1 Star 0 Fork 0

swatyb/oa2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
admin.php 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
x1911 提交于 2014-07-22 15:36 . first version
<?php
/*
[PHPOA] (C) 2011-2014 天生创想 Inc.
$Id: admin.php 1209087 2014-01-08 08:58:28Z phpoa $
*/
define('IN_ADMIN',True);
require_once('include/common.php');
get_login($_USER->id);
if(!is_superadmin()){
if ($_CONFIG->config_data('opendate')<=get_date('H',PHP_TIME) && $_CONFIG->config_data('enddate')<=get_date('H',PHP_TIME)){
exit('对不起,系统被管理员关闭,开启时间为'.$_CONFIG->config_data('opendate').'点到'.$_CONFIG->config_data('enddate').'点');
}else{
if ($_CONFIG->config_data('configflag')=='0'){
exit('对不起,系统被管理员关闭,请联系管理员!<br>关闭原因:'.$_CONFIG->config_data('closereason'));
}
}
}
if ($_GET[fileurl]!=""){
$fileurl=$_GET[fileurl];
}else{
$fileurl="home";
}
define('ADMIN_ROOT', TOA_ROOT.$fileurl.'/');
initGP(array('ac','do'));
empty($ac) && $ac = 'index';
if ( !eregi('[a-z_]', $ac) ) $ac = 'index';
//接收第三方插件
if($fileurl=="ilohamail"){
echo '<script>location.href="'.$ac.'?oausername='.$_GET[oausername].'";</script>';
exit;
}
//新框架转接
if($fileurl=="home"){
echo '<script>location.href="index.php";</script>';
exit;
}
require_once('include/function_'.$fileurl.'.php');
if ( file_exists(ADMIN_ROOT."mod_{$ac}.php") ) {
require_once(ADMIN_ROOT.'./mod_'.$ac.'.php');
} else {
exit;
}
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/swatyb/oa2.git
git@gitee.com:swatyb/oa2.git
swatyb
oa2
oa2
master

搜索帮助