forked from jzxyouok/skyCom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
49 lines (47 loc) · 1.32 KB
/
admin.php
File metadata and controls
49 lines (47 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
error_reporting(E_ALL ^ E_NOTICE);
header("Content-type:text/html; charset=utf-8");
if(!file_exists("config/install.lock"))
{
header("Location: install/");
exit;
}
if(ini_get("register_globals"))
{
die("请关闭全局变量");
}
require("config/config.php");
require("config/const.php");
require("config/version.php");
define("ROOT_PATH", str_replace("\\", "/", dirname(__FILE__))."/");
define("CONTROL_DIR","source/admin");
define("MODEL_DIR","source/model");
define("HOOK_DIR","source/hook");
/*视图模版配置*/
$cache_dir="";//模版缓存文件夹
$wap_template_dir=$template_dir="themes/admin";//模版风格文件夹
$compiled_dir="";//模版编译文件夹
$html_dir="";//生成静态文件夹
$rewrite_on=REWRITE_ON;//是否开启伪静态 0不开 1开启
$smarty_caching=true;//是否开启缓存
$smarty_cache_lifetime=3600;//缓存时间
require("./skymvc/skymvc.php");
//用户自定义初始化函数
function userinit(&$base){
global $wap_template_dir,$template_dir;
$skins=ISWAP?$wap_template_dir:$template_dir;
C()->loadConfig("table");
$ssadmin=C()->get_session("ssadmin");
if(!$ssadmin){
if(!in_array(get('m'),array("login"))){
header("Location: ".APPADMIN."?m=login");
}
}
C()->smarty->assign(array(
"skins"=>$skins."/",
"appindex"=>APPINDEX,
"appadmin"=>APPADMIN,
"ssadmin"=>$ssadmin
));
}
?>