|
@@ -64,31 +64,25 @@ class Loader {
|
|
*/
|
|
*/
|
|
protected function nested($segments)
|
|
protected function nested($segments)
|
|
{
|
|
{
|
|
- $routes = array();
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
foreach (array_reverse($segments, true) as $key => $value)
|
|
foreach (array_reverse($segments, true) as $key => $value)
|
|
{
|
|
{
|
|
-
|
|
|
|
-
|
|
|
|
if (file_exists($path = $this->nest.implode('/', array_slice($segments, 0, $key + 1)).EXT))
|
|
if (file_exists($path = $this->nest.implode('/', array_slice($segments, 0, $key + 1)).EXT))
|
|
{
|
|
{
|
|
- $routes = array_merge($routes, require $path);
|
|
+ return require $path;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
+
|
|
-
|
|
+
|
|
-
|
|
+
|
|
if (file_exists($path = str_replace('.php', '/routes.php', $path)))
|
|
if (file_exists($path = str_replace('.php', '/routes.php', $path)))
|
|
{
|
|
{
|
|
- $routes = array_merge($routes, require $path);
|
|
+ return require $path;
|
|
}
|
|
}
|
|
-
|
|
|
|
- if (count($routes) > 0) return $routes;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
- return $routes;
|
|
+ return array();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -105,9 +99,15 @@ class Loader {
|
|
|
|
|
|
$routes = array();
|
|
$routes = array();
|
|
|
|
|
|
|
|
+
|
|
|
|
+ if (file_exists($path = $this->base.'routes'.EXT))
|
|
|
|
+ {
|
|
|
|
+ $routes = array_merge($routes, require $path);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
- $recursiveIterator = new Iterator(new DirectoryIterator($this->nest), Iterator::SELF_FIRST);
|
|
+ $iterator = new Iterator(new DirectoryIterator($this->nest), Iterator::SELF_FIRST);
|
|
|
|
|
|
foreach ($iterator as $file)
|
|
foreach ($iterator as $file)
|
|
{
|
|
{
|