Commit 88276ba7 by Taylor Otwell

added support for nested route directories.

parent 109a7b4b
......@@ -73,7 +73,15 @@ class Router {
{
$segments = explode('/', $uri);
return (file_exists($path = APP_PATH.'routes/'.$segments[0].EXT)) ? require $path : array();
foreach (array_reverse($segments, true) as $key => $value)
{
if (file_exists($path = APP_PATH.'routes/'.implode('/', array_slice($segments, 0, $key + 1)).EXT))
{
return require $path;
}
}
return array();
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment