123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?php namespace Laravel;
- /**
- * Define a multitude of framework constants. Mainly, we define
- * various file paths to core locations of the framework, as well
- * as a couple of file extensions.
- */
- define('EXT', '.php');
- define('BLADE_EXT', '.blade.php');
- define('APP_PATH', realpath($application).'/');
- define('BASE_PATH', realpath("$laravel/..").'/');
- define('PACKAGE_PATH', realpath($packages).'/');
- define('PUBLIC_PATH', realpath($public).'/');
- define('STORAGE_PATH', realpath($storage).'/');
- define('SYS_PATH', realpath($laravel).'/');
- define('CACHE_PATH', STORAGE_PATH.'cache/');
- define('CONFIG_PATH', APP_PATH.'config/');
- define('CONTROLLER_PATH', APP_PATH.'controllers/');
- define('DATABASE_PATH', STORAGE_PATH.'database/');
- define('LANG_PATH', APP_PATH.'language/');
- define('LIBRARY_PATH', APP_PATH.'libraries/');
- define('MODEL_PATH', APP_PATH.'models/');
- define('ROUTE_PATH', APP_PATH.'routes/');
- define('SESSION_PATH', STORAGE_PATH.'sessions/');
- define('SYS_CONFIG_PATH', SYS_PATH.'config/');
- define('SYS_LANG_PATH', SYS_PATH.'language/');
- define('SYS_VIEW_PATH', SYS_PATH.'views/');
- define('VIEW_PATH', APP_PATH.'views/');
- unset($laravel, $application, $config, $packages, $public, $storage);
- /**
- * Load the classes that can't be resolved through the auto-loader.
- * These are typically classes that are used by the auto-loader or
- * configuration classes, and therefore cannot be auto-loaded.
- */
- require SYS_PATH.'config'.EXT;
- require SYS_PATH.'loader'.EXT;
- require SYS_PATH.'arr'.EXT;
- /**
- * If a Laravel environment has been specified on the server, we will
- * add a path to the configuration manager for the environment.
- */
- if (isset($_SERVER['LARAVEL_ENV']))
- {
- define('ENV_CONFIG_PATH', CONFIG_PATH.$_SERVER['LARAVEL_ENV'].'/');
- Config::glance(ENV_CONFIG_PATH);
- }
- /**
- * Load some core configuration files by default so we don't have to
- * let them fall through the Config loader. This will allow us to
- * load these files faster for each request.
- */
- foreach (array('application', 'session') as $file)
- {
- $config = require CONFIG_PATH.$file.EXT;
- if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = ENV_CONFIG_PATH.$file.EXT))
- {
- $config = array_merge($config, require $path);
- }
- Config::$items[$file] = $config;
- }
- /**
- * Load the container configuration into the Config class. We load
- * this file manually to avoid the overhead of Config::load.
- */
- Config::$items['container'] = require SYS_CONFIG_PATH.'container'.EXT;
- if (file_exists($path = CONFIG_PATH.'container'.EXT))
- {
- Config::$items['container'] = array_merge(Config::$items['container'], require $path);
- }
- if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = ENV_CONFIG_PATH.'container'.EXT))
- {
- Config::$items['container'] = array_merge(Config::$items['container'], require $path);
- }
- /**
- * Bootstrap the application inversion of control (IoC) container.
- * The container provides the convenient resolution of objects and
- * their dependencies, allowing for flexibility and testability
- * within the framework and application.
- */
- require SYS_PATH.'container'.EXT;
- $container = new Container(Config::$items['container']);
- IoC::$container = $container;
- unset($config, $container);
- /**
- * Register the application auto-loader. The auto-loader is responsible
- * for the lazy-loading of all of the Laravel core classes, as well as
- * the developer created libraries and models.
- */
- spl_autoload_register(array('Laravel\\Loader', 'load'));
- Loader::$aliases = Config::$items['application']['aliases'];
- /**
- * Define a few convenient global functions.
- */
- function e($value)
- {
- return HTML::entities($value);
- }
- function __($key, $replacements = array(), $language = null)
- {
- return Lang::line($key, $replacements, $language);
- }
|