core.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. | Set The CLI Options Array
  82. |--------------------------------------------------------------------------
  83. |
  84. | If the current request is from the Artisan command-line interface, we
  85. | will parse the command line arguments and options and set them the
  86. | array of options in the $_SERVER global array for convenience.
  87. |
  88. */
  89. if (defined('STDIN'))
  90. {
  91. $console = CLI\Command::options($_SERVER['argv']);
  92. list($arguments, $options) = $console;
  93. $options = array_change_key_case($options, CASE_UPPER);
  94. $_SERVER['CLI'] = $options;
  95. }
  96. /*
  97. |--------------------------------------------------------------------------
  98. | Set The CLI Laravel Environment
  99. |--------------------------------------------------------------------------
  100. |
  101. | Next we'll set the LARAVEL_ENV variable if the current request is from
  102. | the Artisan command-line interface. Since the environment is often
  103. | specified within an Apache .htaccess file, we need to set it here
  104. | when the request is not coming through Apache.
  105. |
  106. */
  107. if (isset($_SERVER['CLI']['ENV']))
  108. {
  109. $_SERVER['LARAVEL_ENV'] = $_SERVER['CLI']['ENV'];
  110. }
  111. /*
  112. |--------------------------------------------------------------------------
  113. | Register The Laravel Bundles
  114. |--------------------------------------------------------------------------
  115. |
  116. | Finally we will register all of the bundles that have been defined for
  117. | the application. None of them will be started, yet but will be setup
  118. | so that they may be started by the develop at any time.
  119. |
  120. */
  121. $bundles = require path('app').'bundles'.EXT;
  122. foreach ($bundles as $bundle => $config)
  123. {
  124. Bundle::register($bundle, $config);
  125. }