loader.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * This function is registered on the auto-loader stack by the front controller.
  4. */
  5. return function($class) {
  6. // ----------------------------------------------------------
  7. // Replace namespace slashes with directory slashes.
  8. // ----------------------------------------------------------
  9. $file = System\Str::lower(str_replace('\\', '/', $class));
  10. // ----------------------------------------------------------
  11. // Should the class be aliased?
  12. // ----------------------------------------------------------
  13. if (array_key_exists($class, $aliases = System\Config::get('application.aliases')))
  14. {
  15. return class_alias($aliases[$class], $class);
  16. }
  17. // ----------------------------------------------------------
  18. // Check for the class in the system directory.
  19. // ----------------------------------------------------------
  20. if (file_exists($path = BASE_PATH.$file.EXT))
  21. {
  22. require $path;
  23. }
  24. // ----------------------------------------------------------
  25. // Check for the class in the models directory.
  26. // ----------------------------------------------------------
  27. elseif (file_exists($path = APP_PATH.'models/'.$file.EXT))
  28. {
  29. require $path;
  30. }
  31. // ----------------------------------------------------------
  32. // Check for the class in the packages directory.
  33. // ----------------------------------------------------------
  34. elseif (file_exists($path = APP_PATH.'packages/'.$file.EXT))
  35. {
  36. require $path;
  37. }
  38. // ----------------------------------------------------------
  39. // Check for the class in the application directory.
  40. // ----------------------------------------------------------
  41. elseif (file_exists($path = APP_PATH.$file.EXT))
  42. {
  43. require $path;
  44. }
  45. };