adjusted comments in route loader.
This commit is contained in:
parent
f9f168eacb
commit
b55e5169f3
|
@ -25,9 +25,6 @@ public function load($uri)
|
||||||
/**
|
/**
|
||||||
* Load the appropriate routes from the routes directory.
|
* Load the appropriate routes from the routes directory.
|
||||||
*
|
*
|
||||||
* This is done by working down the URI until we find the deepest
|
|
||||||
* possible matching route file.
|
|
||||||
*
|
|
||||||
* @param string $uri
|
* @param string $uri
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
|
@ -35,6 +32,8 @@ private function load_nested_routes($uri)
|
||||||
{
|
{
|
||||||
$segments = explode('/', $uri);
|
$segments = explode('/', $uri);
|
||||||
|
|
||||||
|
// Work backwards through the URI segments until we find the deepest possible
|
||||||
|
// matching route file in the routes directory.
|
||||||
foreach (array_reverse($segments, true) as $key => $value)
|
foreach (array_reverse($segments, true) as $key => $value)
|
||||||
{
|
{
|
||||||
if (file_exists($path = ROUTE_PATH.implode('/', array_slice($segments, 0, $key + 1)).EXT))
|
if (file_exists($path = ROUTE_PATH.implode('/', array_slice($segments, 0, $key + 1)).EXT))
|
||||||
|
|
Loading…
Reference in New Issue