config.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php namespace Laravel;
  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. protected $items = array();
  11. /**
  12. * The paths to the configuration files.
  13. *
  14. * @var array
  15. */
  16. protected $paths = array();
  17. /**
  18. * Create a new configuration manager instance.
  19. *
  20. * @param array $paths
  21. * @return void
  22. */
  23. public function __construct($paths)
  24. {
  25. $this->paths = $paths;
  26. }
  27. /**
  28. * Determine if a configuration item or file exists.
  29. *
  30. * @param string $key
  31. * @return bool
  32. */
  33. public function has($key)
  34. {
  35. return ! is_null($this->get($key));
  36. }
  37. /**
  38. * Get a configuration item.
  39. *
  40. * If the name of a configuration file is passed without specifying an item, the
  41. * entire configuration array will be returned.
  42. *
  43. * <code>
  44. * // Get the "timezone" option from the "application" file
  45. * $timezone = Config::get('application.timezone');
  46. *
  47. * // Get the SQLite connection configuration from the "database" file
  48. * $sqlite = Config::get('database.connections.sqlite');
  49. *
  50. * // Get a configuration option and return "Fred" if it doesn't exist
  51. * $option = Config::get('config.option', 'Fred');
  52. * </code>
  53. *
  54. * @param string $key
  55. * @param string $default
  56. * @return array
  57. */
  58. public function get($key, $default = null)
  59. {
  60. list($file, $key) = $this->parse($key);
  61. if ( ! $this->load($file))
  62. {
  63. return ($default instanceof \Closure) ? call_user_func($default) : $default;
  64. }
  65. if (is_null($key)) return $this->items[$file];
  66. return Arr::get($this->items[$file], $key, $default);
  67. }
  68. /**
  69. * Set a configuration item.
  70. *
  71. * If a specific configuration item is not specified, the entire configuration
  72. * array will be replaced with the given value.
  73. *
  74. * <code>
  75. * // Set the "timezone" option in the "application" file
  76. * Config::set('application.timezone', 'America/Chicago');
  77. *
  78. * // Set the entire "session" array to an empty array
  79. * Config::set('session', array());
  80. * </code>
  81. *
  82. * @param string $key
  83. * @param mixed $value
  84. * @return void
  85. */
  86. public function set($key, $value)
  87. {
  88. list($file, $key) = $this->parse($key);
  89. $this->load($file);
  90. (is_null($key)) ? Arr::set($this->items, $file, $value) : Arr::set($this->items[$file], $key, $value);
  91. }
  92. /**
  93. * Parse a configuration key and return its file and key segments.
  94. *
  95. * Configuration keys follow a {file}.{key} convention.
  96. *
  97. * @param string $key
  98. * @return array
  99. */
  100. protected function parse($key)
  101. {
  102. $segments = explode('.', $key);
  103. $key = (count($segments) > 1) ? implode('.', array_slice($segments, 1)) : null;
  104. return array($segments[0], $key);
  105. }
  106. /**
  107. * Load all of the configuration items from a module configuration file.
  108. *
  109. * If the configuration file has already been loaded, it will not be loaded again.
  110. *
  111. * @param string $file
  112. * @return bool
  113. */
  114. protected function load($file)
  115. {
  116. if (isset($this->items[$file])) return true;
  117. $config = array();
  118. foreach ($this->paths as $directory)
  119. {
  120. $config = (file_exists($path = $directory.$file.EXT)) ? array_merge($config, require $path) : $config;
  121. }
  122. if (count($config) > 0) $this->items[$file] = $config;
  123. return isset($this->items[$file]);
  124. }
  125. }