-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.php
43 lines (43 loc) · 1.42 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
<?php
/**
* --------------------------------------------------------
* | ░░░░░░░░░ █ █░▀▀█▀▀░ ░░░░░░░░░ |
* | ░░░░░░░ █▄▄▄█ █ |
* | |
* | Author:HuangDou Email:[email protected] |
* | QQ-Group:583610949 |
* | WebSite:http://www.UsualTool.com |
* | UT Framework is suitable for Apache2 protocol. |
* --------------------------------------------------------
*/
require_once dirname(__FILE__).'/'.'autoload.php';
/**
* 写入前端公共模板路径
*/
$app->Runin("pubtemp",PUB_TEMP."/front");
/**
* 写入模板工程前端公共路径
*/
$app->Runin("template",$frontwork."/skin/".$config["DEFAULT_MOD"]."/front");
/**
* 拼接当前文件
*/
$modfile=$modpath."/front/".$p.".php";
/**
* 判断文件真实性
*/
if(library\UsualToolInc\UTInc::SearchFile($modfile)){
/**
* 引用前端模板
*/
require_once $modfile;
}else{
/**
* 配置公共错误提示
*/
require_once PUB_PATH.'/front/error.php';
exit();
}
if($config["DEBUG"]){
library\UsualToolDebug\UTDebug::Debug($config["DEBUG_BAR"]);
}