config.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?php namespace Laravel; use Closure;
  2. class Config {
  3. /**
  4. * All of the loaded configuration items.
  5. *
  6. * The configuration arrays are keyed by their owning file name.
  7. *
  8. * @var array
  9. */
  10. public static $items = array();
  11. /**
  12. * The paths to the configuration files.
  13. *
  14. * @var array
  15. */
  16. public static $paths = array(SYS_CONFIG_PATH, CONFIG_PATH, ENV_CONFIG_PATH);
  17. /**
  18. * Determine if a configuration item or file exists.
  19. *
  20. * <code>
  21. * // Determine if the "session" configuration file exists
  22. * $exists = Config::has('session');
  23. *
  24. * // Determine if the "timezone" option exists in the "application" configuration array
  25. * $exists = Config::has('application.timezone');
  26. * </code>
  27. *
  28. * @param string $key
  29. * @return bool
  30. */
  31. public static function has($key)
  32. {
  33. return ! is_null(static::get($key));
  34. }
  35. /**
  36. * Get a configuration item.
  37. *
  38. * If no item is requested, the entire configuration array will be returned.
  39. *
  40. * <code>
  41. * // Get the "session" configuration array
  42. * $session = Config::get('session');
  43. *
  44. * // Get the "timezone" option from the "application" configuration file
  45. * $timezone = Config::get('application.timezone');
  46. * </code>
  47. *
  48. * @param string $key
  49. * @param string $default
  50. * @return array
  51. */
  52. public static function get($key, $default = null)
  53. {
  54. list($file, $key) = static::parse($key);
  55. if ( ! static::load($file))
  56. {
  57. return ($default instanceof Closure) ? call_user_func($default) : $default;
  58. }
  59. if (is_null($key)) return static::$items[$file];
  60. return Arr::get(static::$items[$file], $key, $default);
  61. }
  62. /**
  63. * Set a configuration item's value.
  64. *
  65. * <code>
  66. * // Set the "session" configuration array
  67. * Config::set('session', $array);
  68. *
  69. * // Set the "timezone" option in the "application" configuration file
  70. * Config::set('application.timezone', 'UTC');
  71. * </code>
  72. *
  73. * @param string $key
  74. * @param mixed $value
  75. * @return void
  76. */
  77. public static function set($key, $value)
  78. {
  79. list($file, $key) = static::parse($key);
  80. static::load($file);
  81. if (is_null($key))
  82. {
  83. Arr::set(static::$items, $file, $value);
  84. }
  85. else
  86. {
  87. Arr::set(static::$items[$file], $key, $value);
  88. }
  89. }
  90. /**
  91. * Parse a configuration key and return its file and key segments.
  92. *
  93. * The first segment of a configuration key represents the configuration
  94. * file, while the remaining segments represent an item within that file.
  95. * If no item segment is present, null will be returned for the item value
  96. * indicating that the entire configuration array should be returned.
  97. *
  98. * @param string $key
  99. * @return array
  100. */
  101. protected static function parse($key)
  102. {
  103. $segments = explode('.', $key);
  104. if (count($segments) >= 2)
  105. {
  106. return array($segments[0], implode('.', array_slice($segments, 1)));
  107. }
  108. else
  109. {
  110. return array($segments[0], null);
  111. }
  112. }
  113. /**
  114. * Load all of the configuration items from a configuration file.
  115. *
  116. * @param string $file
  117. * @return bool
  118. */
  119. public static function load($file)
  120. {
  121. if (isset(static::$items[$file])) return true;
  122. $config = array();
  123. // Configuration files cascade. Typically, the system configuration array is
  124. // loaded first, followed by the application array, providing the convenient
  125. // cascading of configuration options from system to application.
  126. foreach (static::$paths as $directory)
  127. {
  128. if ($directory !== '' and file_exists($path = $directory.$file.EXT))
  129. {
  130. $config = array_merge($config, require $path);
  131. }
  132. }
  133. if (count($config) > 0) static::$items[$file] = $config;
  134. return isset(static::$items[$file]);
  135. }
  136. /**
  137. * Add a directory to the configuration manager's search paths.
  138. *
  139. * @param string $path
  140. * @return void
  141. */
  142. public static function glance($path)
  143. {
  144. static::$paths[] = $path;
  145. }
  146. }