loader.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php namespace System;
  2. class Loader {
  3. /**
  4. * The paths to be searched by the loader.
  5. *
  6. * @var array
  7. */
  8. private static $paths = array(BASE_PATH, MODEL_PATH, LIBRARY_PATH);
  9. /**
  10. * All of the class aliases.
  11. *
  12. * @var array
  13. */
  14. private static $aliases = array();
  15. /**
  16. * Bootstrap the auto-loader.
  17. *
  18. * @return void
  19. */
  20. public static function bootstrap()
  21. {
  22. static::$aliases = require CONFIG_PATH.'aliases'.EXT;
  23. }
  24. /**
  25. * Load a class file for a given class name.
  26. *
  27. * This function is registered on the SPL auto-loader stack by the front controller during each request.
  28. *
  29. * All Laravel class names follow a namespace to directory convention. So, if a class exists in
  30. * application/libraries/user, it shouold be placed in the "User" namespace.
  31. *
  32. * @param string $class
  33. * @return void
  34. */
  35. public static function load($class)
  36. {
  37. $file = strtolower(str_replace('\\', '/', $class));
  38. if (array_key_exists($class, static::$aliases))
  39. {
  40. return class_alias(static::$aliases[$class], $class);
  41. }
  42. foreach (static::$paths as $directory)
  43. {
  44. if (file_exists($path = $directory.$file.EXT))
  45. {
  46. require $path;
  47. return;
  48. }
  49. }
  50. }
  51. /**
  52. * Register a path with the auto-loader. After registering the path, it will be
  53. * checked similarly to the models and libraries directories.
  54. *
  55. * @param string $path
  56. * @return void
  57. */
  58. public static function register($path)
  59. {
  60. static::$paths[] = rtrim($path, '/').'/';
  61. }
  62. }