更改必要常量的指定方式

This commit is contained in:
TOP糯米 2019-06-10 12:02:31 +08:00
parent 2e7f047c76
commit 6c54911825
5 changed files with 56 additions and 28 deletions

View File

@ -17,8 +17,8 @@ class Framework {
// 程序运行方式
private static $type = 1;
// 默认访问位置
private static $defaultAddress = 'home';
// 默认访问模块
private static $defaultModule = 'home';
/**
* 执行
@ -29,43 +29,80 @@ class Framework {
// 指定时区
date_default_timezone_set('PRC');
defined('DEBUG') || define('DEBUG', false);
self::setResourceDir();
self::debug();
self::frameworkPath();
self::appPath();
self::resourcePath();
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目录
* @param string $resourceDir
* @param string $path
*/
public static function setResourceDir($resourceDir = '') {
public static function resourcePath($path = '') {
if (!defined('RESOURCE')) {
if (!$resourceDir && isset($_SERVER['SCRIPT_NAME'])) {
if (!$path && isset($_SERVER['SCRIPT_NAME'])) {
$scriptName = $_SERVER['SCRIPT_NAME'];
$pos = strrpos($scriptName, '/');
$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) {
self::$defaultAddress = $address;
public static function defaultModule($module) {
self::$defaultModule = $module;
}
/**
* 指定程序运行方式
* @param int $type
*/
public static function setRunType($type) {
public static function runType($type) {
self::$type = $type;
}
}

View File

@ -9,10 +9,9 @@ class App {
/**
* @param int $type
* @param string $defaultAddress
* @throws exception\RouteException
* @param string $defaultModule
*/
public static function start($type = 1, $defaultAddress = 'home') {
public static function start($type = 1, $defaultModule = 'home') {
// 注册框架自动加载
require 'Loader.php';
$loader = new Loader();
@ -51,7 +50,6 @@ class App {
}
}
// 实例化路由
$route = new Router($routeDriver, $defaultAddress);
$route->handler();
(new Router($routeDriver, $defaultModule))->handler();
}
}

View File

@ -109,7 +109,6 @@ class Router {
/**
* 调用方法并执行程序
* @throws \Exception
*/
public function handler() {
$userDecorators = Register::get('Config')->get('decorator');

View File

View File

@ -2,13 +2,7 @@
use \top\Framework;
// 是否开启DEBUG模式
define('DEBUG', true);
// APP目录
define('APP_PATH', '../application/');
// 框架目录
define('FRAMEWORK_PATH', '../framework/');
// 加载框架
require '../framework/Framework.php';
Framework::appPath('../application/');
Framework::startApp();