core.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php namespace Laravel;
  2. /*
  3. |--------------------------------------------------------------------------
  4. | PHP Display Errors Configuration
  5. |--------------------------------------------------------------------------
  6. |
  7. | Register the constants used by the framework. These are things like file
  8. | extensions and other information that we want to be able to access with
  9. | just a simple constant.
  10. |
  11. */
  12. define('EXT', '.php');
  13. define('CRLF', "\r\n");
  14. define('BLADE_EXT', '.blade.php');
  15. define('DEFAULT_BUNDLE', 'application');
  16. define('MB_STRING', (int) function_exists('mb_get_info'));
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Require Core Classes
  20. |--------------------------------------------------------------------------
  21. |
  22. | Here we will just load in the classes that are used for every request
  23. | or are used by the configuration class. It is quicker and simpler to
  24. | just manually load them in instead of using the auto-loader.
  25. |
  26. */
  27. require path('sys').'ioc'.EXT;
  28. require path('sys').'event'.EXT;
  29. require path('sys').'bundle'.EXT;
  30. require path('sys').'config'.EXT;
  31. require path('sys').'helpers'.EXT;
  32. require path('sys').'autoloader'.EXT;
  33. /*
  34. |--------------------------------------------------------------------------
  35. | Register The Framework Auto-Loader
  36. |--------------------------------------------------------------------------
  37. |
  38. | Next we'll register the Autoloader class on the SPL auto-loader stack
  39. | so it can lazy-load our class files as we need them. This class and
  40. | method will be called each time a class is needed but has not been
  41. | defined yet and will load the appropriate file.
  42. |
  43. */
  44. spl_autoload_register(array('Laravel\\Autoloader', 'load'));
  45. /*
  46. |--------------------------------------------------------------------------
  47. | Register The Laravel Namespace
  48. |--------------------------------------------------------------------------
  49. |
  50. | Register the "Laravel" namespace and its directory mapping so the class
  51. | loader can quickly load all of the core classes using PSR-0 style load
  52. | conventions throughout the "laravel" directory since all core classes
  53. | are namespaced into the "Laravel" namespace.
  54. |
  55. */
  56. Autoloader::namespaces(array('Laravel' => path('sys')));
  57. /*
  58. |--------------------------------------------------------------------------
  59. | Register Eloquent Mappings
  60. |--------------------------------------------------------------------------
  61. |
  62. | A few of the Eloquent ORM classes use a non PSR-0 naming standard so
  63. | we will just map them with hard-coded paths here since PSR-0 uses
  64. | underscores as directory hierarchy indicators.
  65. |
  66. */
  67. Autoloader::map(array(
  68. 'Laravel\\Database\\Eloquent\\Relationships\\Belongs_To'
  69. => path('sys').'database/eloquent/relationships/belongs_to'.EXT,
  70. 'Laravel\\Database\\Eloquent\\Relationships\\Has_Many'
  71. => path('sys').'database/eloquent/relationships/has_many'.EXT,
  72. 'Laravel\\Database\\Eloquent\\Relationships\\Has_Many_And_Belongs_To'
  73. => path('sys').'database/eloquent/relationships/has_many_and_belongs_to'.EXT,
  74. 'Laravel\\Database\\Eloquent\\Relationships\\Has_One'
  75. => path('sys').'database/eloquent/relationships/has_one'.EXT,
  76. 'Laravel\\Database\\Eloquent\\Relationships\\Has_One_Or_Many'
  77. => path('sys').'database/eloquent/relationships/has_one_or_many'.EXT,
  78. ));
  79. /*
  80. |--------------------------------------------------------------------------
  81. | Register The Symfony Components
  82. |--------------------------------------------------------------------------
  83. |
  84. | Laravel's "Artisan" CLI makes use of the Symfony Console component to
  85. | build a wonderful CLI environment that is both robust and testable.
  86. | We'll register the component's namespace here.
  87. |
  88. */
  89. Autoloader::namespaces(array(
  90. 'Symfony\Component\Console' => path('base').'vendor/Symfony/Component/Console',
  91. ));
  92. /*
  93. |--------------------------------------------------------------------------
  94. | Set The CLI Options Array
  95. |--------------------------------------------------------------------------
  96. |
  97. | If the current request is from the Artisan command-line interface, we
  98. | will parse the command line arguments and options and set them the
  99. | array of options in the $_SERVER global array for convenience.
  100. |
  101. */
  102. if (defined('STDIN'))
  103. {
  104. $console = CLI\Command::options($_SERVER['argv']);
  105. list($arguments, $options) = $console;
  106. $options = array_change_key_case($options, CASE_UPPER);
  107. $_SERVER['CLI'] = $options;
  108. }
  109. /*
  110. |--------------------------------------------------------------------------
  111. | Set The CLI Laravel Environment
  112. |--------------------------------------------------------------------------
  113. |
  114. | Next we'll set the LARAVEL_ENV variable if the current request is from
  115. | the Artisan command-line interface. Since the environment is often
  116. | specified within an Apache .htaccess file, we need to set it here
  117. | when the request is not coming through Apache.
  118. |
  119. */
  120. if (isset($_SERVER['CLI']['ENV']))
  121. {
  122. $_SERVER['LARAVEL_ENV'] = $_SERVER['CLI']['ENV'];
  123. }
  124. /*
  125. |--------------------------------------------------------------------------
  126. | Register The Laravel Bundles
  127. |--------------------------------------------------------------------------
  128. |
  129. | Finally we will register all of the bundles that have been defined for
  130. | the application. None of them will be started, yet but will be setup
  131. | so that they may be started by the developer at any time.
  132. |
  133. */
  134. $bundles = require path('app').'bundles'.EXT;
  135. foreach ($bundles as $bundle => $config)
  136. {
  137. Bundle::register($bundle, $config);
  138. }