paths.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. /**
  3. * Laravel - A PHP Framework For Web Artisans
  4. *
  5. * @package Laravel
  6. * @version 2.2.0 (Beta 1)
  7. * @author Taylor Otwell <taylorotwell@gmail.com>
  8. * @link http://laravel.com
  9. */
  10. // --------------------------------------------------------------
  11. // Initialize the web variable if it doesn't exist.
  12. // --------------------------------------------------------------
  13. if ( ! isset($web)) $web = false;
  14. // --------------------------------------------------------------
  15. // Define the directory separator for the environment.
  16. // --------------------------------------------------------------
  17. define('DS', DIRECTORY_SEPARATOR);
  18. // --------------------------------------------------------------
  19. // Define the path to the base directory.
  20. // --------------------------------------------------------------
  21. define('BASE_PATH', __DIR__.DS);
  22. // --------------------------------------------------------------
  23. // The path to the application directory.
  24. // --------------------------------------------------------------
  25. $paths['APP_PATH'] = 'application';
  26. // --------------------------------------------------------------
  27. // The path to the Laravel directory.
  28. // --------------------------------------------------------------
  29. $paths['SYS_PATH'] = 'laravel';
  30. // --------------------------------------------------------------
  31. // The path to the bundles directory.
  32. // --------------------------------------------------------------
  33. $paths['BUNDLE_PATH'] = 'bundles';
  34. // --------------------------------------------------------------
  35. // The path to the storage directory.
  36. // --------------------------------------------------------------
  37. $paths['STORAGE_PATH'] = 'storage';
  38. // --------------------------------------------------------------
  39. // The path to the tests directory.
  40. // --------------------------------------------------------------
  41. $paths['TESTS_PATH'] = 'tests';
  42. // --------------------------------------------------------------
  43. // The path to the public directory.
  44. // --------------------------------------------------------------
  45. if ($web)
  46. {
  47. define('PUBLIC_PATH', realpath('').DS);
  48. }
  49. else
  50. {
  51. $paths['PUBLIC_PATH'] = 'public';
  52. }
  53. // --------------------------------------------------------------
  54. // Define each constant if it hasn't been defined.
  55. // --------------------------------------------------------------
  56. foreach ($paths as $name => $path)
  57. {
  58. if ( ! defined($name))
  59. {
  60. $path = ($web) ? '../'.$path : $path;
  61. define($name, realpath($path).DS);
  62. }
  63. }