core.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php namespace Laravel;
  2. /**
  3. * Define a multitude of framework constants. Mainly, we define
  4. * various file paths to core locations of the framework, as well
  5. * as a couple of file extensions.
  6. */
  7. define('EXT', '.php');
  8. define('BLADE_EXT', '.blade.php');
  9. define('APP_PATH', realpath($application).'/');
  10. define('BASE_PATH', realpath("$laravel/..").'/');
  11. define('PACKAGE_PATH', realpath($packages).'/');
  12. define('PUBLIC_PATH', realpath($public).'/');
  13. define('STORAGE_PATH', realpath($storage).'/');
  14. define('SYS_PATH', realpath($laravel).'/');
  15. define('CACHE_PATH', STORAGE_PATH.'cache/');
  16. define('CONFIG_PATH', APP_PATH.'config/');
  17. define('CONTROLLER_PATH', APP_PATH.'controllers/');
  18. define('DATABASE_PATH', STORAGE_PATH.'database/');
  19. define('LANG_PATH', APP_PATH.'language/');
  20. define('LIBRARY_PATH', APP_PATH.'libraries/');
  21. define('MODEL_PATH', APP_PATH.'models/');
  22. define('ROUTE_PATH', APP_PATH.'routes/');
  23. define('SESSION_PATH', STORAGE_PATH.'sessions/');
  24. define('SYS_CONFIG_PATH', SYS_PATH.'config/');
  25. define('SYS_LANG_PATH', SYS_PATH.'language/');
  26. define('SYS_VIEW_PATH', SYS_PATH.'views/');
  27. define('VIEW_PATH', APP_PATH.'views/');
  28. unset($laravel, $application, $config, $packages, $public, $storage);
  29. /**
  30. * Load the classes that can't be resolved through the auto-loader.
  31. * These are typically classes that are used by the auto-loader or
  32. * configuration classes, and therefore cannot be auto-loaded.
  33. */
  34. require SYS_PATH.'config'.EXT;
  35. require SYS_PATH.'loader'.EXT;
  36. require SYS_PATH.'arr'.EXT;
  37. /**
  38. * If a Laravel environment has been specified on the server, we will
  39. * add a path to the configuration manager for the environment.
  40. */
  41. if (isset($_SERVER['LARAVEL_ENV']))
  42. {
  43. define('ENV_CONFIG_PATH', CONFIG_PATH.$_SERVER['LARAVEL_ENV'].'/');
  44. Config::glance(ENV_CONFIG_PATH);
  45. }
  46. /**
  47. * Load some core configuration files by default so we don't have to
  48. * let them fall through the Config loader. This will allow us to
  49. * load these files faster for each request.
  50. */
  51. foreach (array('application', 'session') as $file)
  52. {
  53. $config = require CONFIG_PATH.$file.EXT;
  54. if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = ENV_CONFIG_PATH.$file.EXT))
  55. {
  56. $config = array_merge($config, require $path);
  57. }
  58. Config::$items[$file] = $config;
  59. }
  60. /**
  61. * Load the container configuration into the Config class. We load
  62. * this file manually to avoid the overhead of Config::load.
  63. */
  64. Config::$items['container'] = require SYS_CONFIG_PATH.'container'.EXT;
  65. if (file_exists($path = CONFIG_PATH.'container'.EXT))
  66. {
  67. Config::$items['container'] = array_merge(Config::$items['container'], require $path);
  68. }
  69. if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = ENV_CONFIG_PATH.'container'.EXT))
  70. {
  71. Config::$items['container'] = array_merge(Config::$items['container'], require $path);
  72. }
  73. /**
  74. * Bootstrap the application inversion of control (IoC) container.
  75. * The container provides the convenient resolution of objects and
  76. * their dependencies, allowing for flexibility and testability
  77. * within the framework and application.
  78. */
  79. require SYS_PATH.'container'.EXT;
  80. $container = new Container(Config::$items['container']);
  81. IoC::$container = $container;
  82. unset($config, $container);
  83. /**
  84. * Register the application auto-loader. The auto-loader is responsible
  85. * for the lazy-loading of all of the Laravel core classes, as well as
  86. * the developer created libraries and models.
  87. */
  88. spl_autoload_register(array('Laravel\\Loader', 'load'));
  89. Loader::$aliases = Config::$items['application']['aliases'];
  90. /**
  91. * Define a few convenient global functions.
  92. */
  93. function e($value)
  94. {
  95. return HTML::entities($value);
  96. }
  97. function __($key, $replacements = array(), $language = null)
  98. {
  99. return Lang::line($key, $replacements, $language);
  100. }