更改必要常量的指定方式
This commit is contained in:
parent
2e7f047c76
commit
6c54911825
|
@ -17,8 +17,8 @@ class Framework {
|
||||||
// 程序运行方式
|
// 程序运行方式
|
||||||
private static $type = 1;
|
private static $type = 1;
|
||||||
|
|
||||||
// 默认访问位置
|
// 默认访问模块
|
||||||
private static $defaultAddress = 'home';
|
private static $defaultModule = 'home';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 执行
|
* 执行
|
||||||
|
@ -29,43 +29,80 @@ class Framework {
|
||||||
// 指定时区
|
// 指定时区
|
||||||
date_default_timezone_set('PRC');
|
date_default_timezone_set('PRC');
|
||||||
|
|
||||||
defined('DEBUG') || define('DEBUG', false);
|
self::debug();
|
||||||
|
self::frameworkPath();
|
||||||
self::setResourceDir();
|
self::appPath();
|
||||||
|
self::resourcePath();
|
||||||
|
|
||||||
require 'library/App.php';
|
require 'library/App.php';
|
||||||
App::start(self::$type, self::$defaultAddress);
|
App::start(self::$type, self::$defaultModule);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否开启DEBUG
|
||||||
|
* @param bool $status
|
||||||
|
*/
|
||||||
|
public static function debug($status = false) {
|
||||||
|
if (!defined('DEBUG')) {
|
||||||
|
define('DEBUG', $status);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 指定框架目录
|
||||||
|
* @param string $path
|
||||||
|
*/
|
||||||
|
public static function frameworkPath($path = '') {
|
||||||
|
if (!defined('FRAMEWORK_PATH')) {
|
||||||
|
if (!$path) {
|
||||||
|
$path = __DIR__ . '/';
|
||||||
|
}
|
||||||
|
define('FRAMEWORK_PATH', $path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 应用目录
|
||||||
|
* @param string $path
|
||||||
|
*/
|
||||||
|
public static function appPath($path = '') {
|
||||||
|
if (!defined('APP_PATH')) {
|
||||||
|
if (!$path) {
|
||||||
|
$path = './application/';
|
||||||
|
}
|
||||||
|
define('APP_PATH', $path);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 指定Resource目录
|
* 指定Resource目录
|
||||||
* @param string $resourceDir
|
* @param string $path
|
||||||
*/
|
*/
|
||||||
public static function setResourceDir($resourceDir = '') {
|
public static function resourcePath($path = '') {
|
||||||
if (!defined('RESOURCE')) {
|
if (!defined('RESOURCE')) {
|
||||||
if (!$resourceDir && isset($_SERVER['SCRIPT_NAME'])) {
|
if (!$path && isset($_SERVER['SCRIPT_NAME'])) {
|
||||||
$scriptName = $_SERVER['SCRIPT_NAME'];
|
$scriptName = $_SERVER['SCRIPT_NAME'];
|
||||||
$pos = strrpos($scriptName, '/');
|
$pos = strrpos($scriptName, '/');
|
||||||
$root = substr($scriptName, 0, $pos + 1);
|
$root = substr($scriptName, 0, $pos + 1);
|
||||||
$resourceDir = $root . 'resource/';
|
$path = $root . 'resource/';
|
||||||
}
|
}
|
||||||
define('RESOURCE', $resourceDir);
|
define('RESOURCE', $path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 指定默认访问位置
|
* 指定默认访问位置
|
||||||
* @param string $address
|
* @param string $module
|
||||||
*/
|
*/
|
||||||
public static function setDefaultAddress($address) {
|
public static function defaultModule($module) {
|
||||||
self::$defaultAddress = $address;
|
self::$defaultModule = $module;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 指定程序运行方式
|
* 指定程序运行方式
|
||||||
* @param int $type
|
* @param int $type
|
||||||
*/
|
*/
|
||||||
public static function setRunType($type) {
|
public static function runType($type) {
|
||||||
self::$type = $type;
|
self::$type = $type;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -9,10 +9,9 @@ class App {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int $type
|
* @param int $type
|
||||||
* @param string $defaultAddress
|
* @param string $defaultModule
|
||||||
* @throws exception\RouteException
|
|
||||||
*/
|
*/
|
||||||
public static function start($type = 1, $defaultAddress = 'home') {
|
public static function start($type = 1, $defaultModule = 'home') {
|
||||||
// 注册框架自动加载
|
// 注册框架自动加载
|
||||||
require 'Loader.php';
|
require 'Loader.php';
|
||||||
$loader = new Loader();
|
$loader = new Loader();
|
||||||
|
@ -51,7 +50,6 @@ class App {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 实例化路由
|
// 实例化路由
|
||||||
$route = new Router($routeDriver, $defaultAddress);
|
(new Router($routeDriver, $defaultModule))->handler();
|
||||||
$route->handler();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -109,7 +109,6 @@ class Router {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 调用方法并执行程序
|
* 调用方法并执行程序
|
||||||
* @throws \Exception
|
|
||||||
*/
|
*/
|
||||||
public function handler() {
|
public function handler() {
|
||||||
$userDecorators = Register::get('Config')->get('decorator');
|
$userDecorators = Register::get('Config')->get('decorator');
|
||||||
|
|
|
@ -2,13 +2,7 @@
|
||||||
|
|
||||||
use \top\Framework;
|
use \top\Framework;
|
||||||
|
|
||||||
// 是否开启DEBUG模式
|
|
||||||
define('DEBUG', true);
|
|
||||||
// APP目录
|
|
||||||
define('APP_PATH', '../application/');
|
|
||||||
// 框架目录
|
|
||||||
define('FRAMEWORK_PATH', '../framework/');
|
|
||||||
// 加载框架
|
|
||||||
require '../framework/Framework.php';
|
require '../framework/Framework.php';
|
||||||
|
|
||||||
|
Framework::appPath('../application/');
|
||||||
Framework::startApp();
|
Framework::startApp();
|
||||||
|
|
Loading…
Reference in New Issue