loader.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php namespace Laravel;
  2. class Loader_Facade extends Facade {
  3. public static $resolve = 'loader';
  4. }
  5. class Loader {
  6. /**
  7. * The paths to be searched by the loader.
  8. *
  9. * @var array
  10. */
  11. private $paths;
  12. /**
  13. * All of the class aliases.
  14. *
  15. * @var array
  16. */
  17. private $aliases;
  18. /**
  19. * Bootstrap the auto-loader.
  20. *
  21. * @return void
  22. */
  23. public function __construct($aliases, $paths)
  24. {
  25. $this->paths = $paths;
  26. $this->aliases = $aliases;
  27. }
  28. /**
  29. * Load a class file for a given class name.
  30. *
  31. * This function is registered on the SPL auto-loader stack by the front controller during each request.
  32. * All Laravel class names follow a namespace to directory convention.
  33. *
  34. * @param string $class
  35. * @return void
  36. */
  37. public function load($class)
  38. {
  39. $file = strtolower(str_replace(array('\\', '_Facade'), array('/', ''), $class));
  40. if (array_key_exists($class, $this->aliases))
  41. {
  42. return class_alias($this->aliases[$class], $class);
  43. }
  44. foreach ($this->paths as $directory)
  45. {
  46. if (file_exists($path = $directory.$file.EXT))
  47. {
  48. require_once $path;
  49. return;
  50. }
  51. }
  52. }
  53. /**
  54. * Register a path with the auto-loader.
  55. *
  56. * After registering the path, it will be checked similarly to the models and libraries directories.
  57. *
  58. * @param string $path
  59. * @return void
  60. */
  61. public function register_path($path)
  62. {
  63. $this->paths[] = rtrim($path, '/').'/';
  64. }
  65. /**
  66. * Register an alias with the auto-loader.
  67. *
  68. * @param array $alias
  69. * @return void
  70. */
  71. public function register_alias($alias)
  72. {
  73. $this->aliases = array_merge($this->aliases, $alias);
  74. }
  75. /**
  76. * Remove an alias from the auto-loader's list of aliases.
  77. *
  78. * @param string $alias
  79. * @return void
  80. */
  81. public function forget_alias($alias)
  82. {
  83. unset($this->aliases[$alias]);
  84. }
  85. }