loader.php 809 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php namespace System\Route;
  2. class Loader {
  3. /**
  4. * Load the route file based on the first segment of the URI.
  5. *
  6. * @param string $uri
  7. * @return void
  8. */
  9. public static function load($uri)
  10. {
  11. if ( ! is_dir(APP_PATH.'routes'))
  12. {
  13. return require APP_PATH.'routes'.EXT;
  14. }
  15. if ( ! file_exists(APP_PATH.'routes/home'.EXT))
  16. {
  17. throw new \Exception("A [home] route file is required when using a route directory.");
  18. }
  19. if ($uri == '/')
  20. {
  21. return require APP_PATH.'routes/home'.EXT;
  22. }
  23. else
  24. {
  25. $segments = explode('/', trim($uri, '/'));
  26. if ( ! file_exists(APP_PATH.'routes/'.$segments[0].EXT))
  27. {
  28. return require APP_PATH.'routes/home'.EXT;
  29. }
  30. return array_merge(require APP_PATH.'routes/'.$segments[0].EXT, require APP_PATH.'routes/home'.EXT);
  31. }
  32. }
  33. }