diff --git a/framework/Framework.php b/framework/Framework.php index b087e08..9d13ce3 100644 --- a/framework/Framework.php +++ b/framework/Framework.php @@ -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; } } \ No newline at end of file diff --git a/framework/library/App.php b/framework/library/App.php index 9b5a616..065aa15 100644 --- a/framework/library/App.php +++ b/framework/library/App.php @@ -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(); } } \ No newline at end of file diff --git a/framework/library/Router.php b/framework/library/Router.php index 82446fb..1de4a87 100644 --- a/framework/library/Router.php +++ b/framework/library/Router.php @@ -109,7 +109,6 @@ class Router { /** * 调用方法并执行程序 - * @throws \Exception */ public function handler() { $userDecorators = Register::get('Config')->get('decorator'); diff --git a/public/index.html b/public/index.html deleted file mode 100644 index e69de29..0000000 diff --git a/public/index.php b/public/index.php index e677d3f..8b3fe67 100644 --- a/public/index.php +++ b/public/index.php @@ -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();