loader.php 622 B

123456789101112131415161718192021222324252627282930313233
  1. <?php namespace System\Routing;
  2. class Loader {
  3. /**
  4. * Load the appropriate routes for the request URI.
  5. *
  6. * @param string
  7. * @return array
  8. */
  9. public static function load($uri)
  10. {
  11. $base = require APP_PATH.'routes'.EXT;
  12. if ( ! is_dir(APP_PATH.'routes') or $uri == '')
  13. {
  14. return $base;
  15. }
  16. list($routes, $segments) = array(array(), explode('/', $uri));
  17. foreach (array_reverse($segments, true) as $key => $value)
  18. {
  19. if (file_exists($path = ROUTE_PATH.implode('/', array_slice($segments, 0, $key + 1)).EXT))
  20. {
  21. $routes = require $path;
  22. }
  23. }
  24. return array_merge($routes, $base);
  25. }
  26. }