paths.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. if ( ! defined('DS'))
  18. {
  19. define('DS', DIRECTORY_SEPARATOR);
  20. }
  21. // --------------------------------------------------------------
  22. // Define the path to the base directory.
  23. // --------------------------------------------------------------
  24. define('BASE_PATH', __DIR__.DS);
  25. // --------------------------------------------------------------
  26. // The path to the application directory.
  27. // --------------------------------------------------------------
  28. $paths['APP_PATH'] = 'application';
  29. // --------------------------------------------------------------
  30. // The path to the Laravel directory.
  31. // --------------------------------------------------------------
  32. $paths['SYS_PATH'] = 'laravel';
  33. // --------------------------------------------------------------
  34. // The path to the bundles directory.
  35. // --------------------------------------------------------------
  36. $paths['BUNDLE_PATH'] = 'bundles';
  37. // --------------------------------------------------------------
  38. // The path to the storage directory.
  39. // --------------------------------------------------------------
  40. $paths['STORAGE_PATH'] = 'storage';
  41. // --------------------------------------------------------------
  42. // The path to the tests directory.
  43. // --------------------------------------------------------------
  44. $paths['TESTS_PATH'] = 'tests';
  45. // --------------------------------------------------------------
  46. // The path to the public directory.
  47. // --------------------------------------------------------------
  48. if ($web)
  49. {
  50. define('PUBLIC_PATH', realpath('').DS);
  51. }
  52. else
  53. {
  54. $paths['PUBLIC_PATH'] = 'public';
  55. }
  56. // --------------------------------------------------------------
  57. // Define each constant if it hasn't been defined.
  58. // --------------------------------------------------------------
  59. foreach ($paths as $name => $path)
  60. {
  61. if ( ! defined($name))
  62. {
  63. if ($web) $path = "../{$path}";
  64. define($name, realpath($path).DS);
  65. }
  66. }