laravel/paths.php

74 lines
2.4 KiB
PHP
Raw Normal View History

2012-01-17 15:28:19 -06:00
<?php
2012-01-17 16:10:16 -06:00
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @version 2.2.0 (Beta 1)
* @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com
*/
2012-01-17 15:28:19 -06:00
// --------------------------------------------------------------
// Initialize the web variable if it doesn't exist.
// --------------------------------------------------------------
if ( ! isset($web)) $web = false;
// --------------------------------------------------------------
// Define the directory separator for the environment.
// --------------------------------------------------------------
define('DS', DIRECTORY_SEPARATOR);
2012-01-18 09:58:56 -06:00
// --------------------------------------------------------------
// Define the path to the base directory.
// --------------------------------------------------------------
define('BASE_PATH', __DIR__.DS);
2012-01-17 15:28:19 -06:00
// --------------------------------------------------------------
// The path to the application directory.
// --------------------------------------------------------------
$paths['APP_PATH'] = 'application';
// --------------------------------------------------------------
// The path to the Laravel directory.
// --------------------------------------------------------------
$paths['SYS_PATH'] = 'laravel';
2012-01-17 15:28:19 -06:00
// --------------------------------------------------------------
// The path to the bundles directory.
// --------------------------------------------------------------
$paths['BUNDLE_PATH'] = 'bundles';
// --------------------------------------------------------------
// The path to the storage directory.
// --------------------------------------------------------------
$paths['STORAGE_PATH'] = 'storage';
// --------------------------------------------------------------
// The path to the tests directory.
2012-01-17 15:28:19 -06:00
// --------------------------------------------------------------
$paths['TESTS_PATH'] = 'tests';
2012-01-17 15:28:19 -06:00
// --------------------------------------------------------------
// The path to the public directory.
// --------------------------------------------------------------
if ($web)
{
define('PUBLIC_PATH', realpath('').DS);
}
else
{
$paths['PUBLIC_PATH'] = 'public';
}
// --------------------------------------------------------------
// Define each constant if it hasn't been defined.
// --------------------------------------------------------------
foreach ($paths as $name => $path)
{
if ( ! defined($name))
{
$path = ($web) ? '../'.$path : $path;
define($name, realpath($path).DS);
}
}