config.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php namespace System;
  2. class Config {
  3. /**
  4. * All of the loaded configuration items.
  5. *
  6. * @var array
  7. */
  8. private static $items = array();
  9. /**
  10. * Determine if a configuration item exists.
  11. *
  12. * @param string $key
  13. * @return bool
  14. */
  15. public static function has($key)
  16. {
  17. return ! is_null(static::get($key));
  18. }
  19. /**
  20. * Get a configuration item.
  21. *
  22. * @param string $key
  23. * @param string $default
  24. * @return mixed
  25. */
  26. public static function get($key, $default = null)
  27. {
  28. // -----------------------------------------------------
  29. // If a dot is not present, we will just return the
  30. // entire configuration array.
  31. //
  32. // If the configuration file does not exist, the default
  33. // value will be returned.
  34. // -----------------------------------------------------
  35. if(strpos($key, '.') === false)
  36. {
  37. static::load($key);
  38. return (array_key_exists($key, static::$items)) ? static::$items[$key] : $default;
  39. }
  40. list($file, $key) = static::parse($key);
  41. static::load($file);
  42. // -----------------------------------------------------
  43. // If the file doesn't exist, return the default.
  44. // -----------------------------------------------------
  45. if ( ! array_key_exists($file, static::$items))
  46. {
  47. return $default;
  48. }
  49. // -----------------------------------------------------
  50. // Return the configuration item. If the item doesn't
  51. // exist, the default value will be returned.
  52. // -----------------------------------------------------
  53. return (array_key_exists($key, static::$items[$file])) ? static::$items[$file][$key] : $default;
  54. }
  55. /**
  56. * Set a configuration item.
  57. *
  58. * @param string $key
  59. * @param mixed $value
  60. * @return void
  61. */
  62. public static function set($key, $value)
  63. {
  64. list($file, $key) = static::parse($key);
  65. static::load($file);
  66. static::$items[$file][$key] = $value;
  67. }
  68. /**
  69. * Parse a configuration key.
  70. *
  71. * @param string $key
  72. * @return array
  73. */
  74. private static function parse($key)
  75. {
  76. // -----------------------------------------------------
  77. // The left side of the dot is the file name, while
  78. // the right side of the dot is the item within that
  79. // file being requested.
  80. //
  81. // This syntax allows for the easy retrieval and setting
  82. // of configuration items.
  83. // -----------------------------------------------------
  84. $segments = explode('.', $key);
  85. if (count($segments) < 2)
  86. {
  87. throw new \Exception("Invalid configuration key [$key].");
  88. }
  89. return array($segments[0], implode('.', array_slice($segments, 1)));
  90. }
  91. /**
  92. * Load all of the configuration items.
  93. *
  94. * @param string $file
  95. * @return void
  96. */
  97. public static function load($file)
  98. {
  99. // -----------------------------------------------------
  100. // Bail out if already loaded or doesn't exist.
  101. // -----------------------------------------------------
  102. if (array_key_exists($file, static::$items) or ! file_exists($path = APP_PATH.'config/'.$file.EXT))
  103. {
  104. return;
  105. }
  106. // -----------------------------------------------------
  107. // Load the configuration array into the array of items.
  108. // The items array is keyed by filename.
  109. // -----------------------------------------------------
  110. static::$items[$file] = require $path;
  111. }
  112. }