-
Notifications
You must be signed in to change notification settings - Fork 6
/
route.php
27 lines (21 loc) · 847 Bytes
/
route.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
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: Dean <[email protected]>
// +----------------------------------------------------------------------
$apps = cmf_scan_dir(APP_PATH . '*', GLOB_ONLYDIR);
foreach ($apps as $app) {
$routeFile = APP_PATH . $app . '/route.php';
if (file_exists($routeFile)) {
include_once $routeFile;
}
}
if (file_exists(CMF_ROOT . "data/conf/route.php")) {
$runtimeRoutes = include CMF_ROOT . "data/conf/route.php";
} else {
$runtimeRoutes = [];
}
return $runtimeRoutes;