loader.php 781 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * This function is registered on the auto-loader stack by the front controller.
  4. *
  5. * All namespace slashes will be replaced with directory slashes since all Laravel
  6. * system classes are organized using a namespace to directory convention.
  7. */
  8. return function($class) {
  9. $file = strtolower(str_replace('\\', '/', $class));
  10. if (array_key_exists($class, $aliases = System\Config::get('aliases')))
  11. {
  12. return class_alias($aliases[$class], $class);
  13. }
  14. if (file_exists($path = BASE_PATH.$file.EXT))
  15. {
  16. require $path;
  17. }
  18. elseif (file_exists($path = APP_PATH.'models/'.$file.EXT))
  19. {
  20. require $path;
  21. }
  22. elseif (file_exists($path = APP_PATH.'libraries/'.$file.EXT))
  23. {
  24. require $path;
  25. }
  26. elseif (file_exists($path = APP_PATH.$file.EXT))
  27. {
  28. require $path;
  29. }
  30. };