12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- /**
- * Laravel - A PHP Framework For Web Artisans
- *
- * @package Laravel
- * @version 3.1.7
- * @author Taylor Otwell <taylorotwell@gmail.com>
- * @link http://laravel.com
- */
- // --------------------------------------------------------------
- // The path to the application directory.
- // --------------------------------------------------------------
- $paths['app'] = 'application';
- // --------------------------------------------------------------
- // The path to the Laravel directory.
- // --------------------------------------------------------------
- $paths['sys'] = 'laravel';
- // --------------------------------------------------------------
- // The path to the bundles directory.
- // --------------------------------------------------------------
- $paths['bundle'] = 'bundles';
- // --------------------------------------------------------------
- // The path to the storage directory.
- // --------------------------------------------------------------
- $paths['storage'] = 'storage';
- // --------------------------------------------------------------
- // The path to the public directory.
- // --------------------------------------------------------------
- $paths['public'] = 'public';
- // *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
- // END OF USER CONFIGURATION. HERE BE DRAGONS!
- // *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
- // --------------------------------------------------------------
- // Change to the current working directory.
- // --------------------------------------------------------------
- chdir(__DIR__);
- // --------------------------------------------------------------
- // Define the directory separator for the environment.
- // --------------------------------------------------------------
- if ( ! defined('DS'))
- {
- define('DS', DIRECTORY_SEPARATOR);
- }
- // --------------------------------------------------------------
- // Define the path to the base directory.
- // --------------------------------------------------------------
- $GLOBALS['laravel_paths']['base'] = __DIR__.DS;
- // --------------------------------------------------------------
- // Define each constant if it hasn't been defined.
- // --------------------------------------------------------------
- foreach ($paths as $name => $path)
- {
- if ( ! isset($GLOBALS['laravel_paths'][$name]))
- {
- $GLOBALS['laravel_paths'][$name] = realpath($path).DS;
- }
- }
- /**
- * A global path helper function.
- *
- * <code>
- * $storage = path('storage');
- * </code>
- *
- * @param string $path
- * @return string
- */
- function path($path)
- {
- return $GLOBALS['laravel_paths'][$path];
- }
- /**
- * A global path setter function.
- *
- * @param string $path
- * @param string $value
- * @return void
- */
- function set_path($path, $value)
- {
- $GLOBALS['laravel_paths'][$path] = $value;
- }
|