forked from jzxyouok/skyCom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
54 lines (50 loc) · 1.43 KB
/
index.php
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
50
51
52
53
54
<?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/setconfig.php");
require("config/const.php");
require("config/version.php");
define("ROOT_PATH", str_replace("\\", "/", dirname(__FILE__))."/");
define("CONTROL_DIR","source/index");
define("MODEL_DIR","source/model");
define("HOOK_DIR","source/hook");
/*视图模版配置*/
$cache_dir="";//模版缓存文件夹
$template_dir="themes/".SKINS;//模版风格文件夹
$wap_template_dir="themes/".WAPSKINS;
if(!file_exists($wap_template_dir)){
$wap_template_dir=$template_dir;
}
$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;
loadSkinsData();
$skins=ISWAP?$wap_template_dir:$template_dir;
C()->loadConfig("table");
$ssuser=C()->get_session('ssuser');
C()->smarty->assign(array(
"skins"=>$skins."/",
"appindex"=>APPINDEX,
"appadmin"=>APPADMIN,
"ssuser"=>$ssuser,
"site"=>M("sites")->selectRow(),
"seo"=>M("seo")->get(get('m'),get('a'))
));
}
?>