core.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php namespace Laravel;
  2. define('APP_PATH', realpath($application).'/');
  3. define('BASE_PATH', realpath(str_replace('laravel', '', $laravel)).'/');
  4. define('PACKAGE_PATH', realpath($packages).'/');
  5. define('PUBLIC_PATH', realpath($public).'/');
  6. define('STORAGE_PATH', realpath($storage).'/');
  7. define('SYS_PATH', realpath($laravel).'/');
  8. unset($laravel, $application, $config, $packages, $public, $storage);
  9. define('CACHE_PATH', STORAGE_PATH.'cache/');
  10. define('CONFIG_PATH', APP_PATH.'config/');
  11. define('CONTROLLER_PATH', APP_PATH.'controllers/');
  12. define('DATABASE_PATH', STORAGE_PATH.'database/');
  13. define('LANG_PATH', APP_PATH.'language/');
  14. define('LIBRARY_PATH', APP_PATH.'libraries/');
  15. define('MODEL_PATH', APP_PATH.'models/');
  16. define('ROUTE_PATH', APP_PATH.'routes/');
  17. define('SESSION_PATH', STORAGE_PATH.'sessions/');
  18. define('SYS_CONFIG_PATH', SYS_PATH.'config/');
  19. define('SYS_LANG_PATH', SYS_PATH.'language/');
  20. define('VIEW_PATH', APP_PATH.'views/');
  21. define('EXT', '.php');
  22. define('BLADE_EXT', '.blade.php');
  23. /**
  24. * Load the classes that can't be resolved through the auto-loader. These are typically classes
  25. * that are used by the auto-loader or configuration classes, and therefore cannot be auto-loaded.
  26. */
  27. require SYS_PATH.'facades'.EXT;
  28. require SYS_PATH.'config'.EXT;
  29. require SYS_PATH.'loader'.EXT;
  30. require SYS_PATH.'arr'.EXT;
  31. /**
  32. * Bootstrap the application inversion of control (IoC) container. The container provides the
  33. * convenient resolution of objects and their dependencies, allowing for flexibility and
  34. * testability within the framework and application.
  35. */
  36. require SYS_PATH.'container'.EXT;
  37. $container = new Container(Config::get('container'));
  38. IoC::$container = $container;
  39. /**
  40. * Register the application auto-loader. The auto-loader is responsible for the lazy-loading
  41. * of all of the Laravel core classes, as well as the developer created libraries and models.
  42. */
  43. spl_autoload_register(array($container->resolve('laravel.loader'), 'load'));
  44. /**
  45. * Define a few convenient global functions.
  46. */
  47. function e($value)
  48. {
  49. return HTML::entities($value);
  50. }
  51. function __($key, $replacements = array(), $language = null)
  52. {
  53. return Lang::line($key, $replacements, $language);
  54. }