123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <?php
- $environments = array(
- 'local' => array('http://localhost*', '*.dev'),
- );
- $paths['app'] = 'application';
- $paths['sys'] = 'laravel';
- $paths['bundle'] = 'bundles';
- $paths['storage'] = 'storage';
- $paths['public'] = 'public';
- chdir(__DIR__);
- if ( ! defined('DS'))
- {
- define('DS', DIRECTORY_SEPARATOR);
- }
- $GLOBALS['laravel_paths']['base'] = __DIR__.DS;
- foreach ($paths as $name => $path)
- {
- if ( ! isset($GLOBALS['laravel_paths'][$name]))
- {
- $GLOBALS['laravel_paths'][$name] = realpath($path).DS;
- }
- }
- function path($path)
- {
- return $GLOBALS['laravel_paths'][$path];
- }
- function set_path($path, $value)
- {
- $GLOBALS['laravel_paths'][$path] = $value;
- }
|