config.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. * Get a configuration item.
  11. *
  12. * @param string $key
  13. * @return mixed
  14. */
  15. public static function get($key)
  16. {
  17. // -----------------------------------------------------
  18. // If a dot is not present, we will just return the
  19. // entire configuration array.
  20. // -----------------------------------------------------
  21. if(strpos($key, '.') === false)
  22. {
  23. static::load($key);
  24. return static::$items[$key];
  25. }
  26. list($file, $key) = static::parse($key);
  27. static::load($file);
  28. if (array_key_exists($key, static::$items[$file]))
  29. {
  30. return static::$items[$file][$key];
  31. }
  32. throw new \Exception("Configuration item [$key] is not defined.");
  33. }
  34. /**
  35. * Set a configuration item.
  36. *
  37. * @param string $key
  38. * @param mixed $value
  39. * @return void
  40. */
  41. public static function set($key, $value)
  42. {
  43. list($file, $key) = static::parse($key);
  44. static::load($file);
  45. static::$items[$file][$key] = $value;
  46. }
  47. /**
  48. * Parse a configuration key.
  49. *
  50. * @param string $key
  51. * @return array
  52. */
  53. private static function parse($key)
  54. {
  55. // -----------------------------------------------------
  56. // The left side of the dot is the file name, while
  57. // the right side of the dot is the item within that
  58. // file being requested.
  59. //
  60. // This syntax allows for the easy retrieval and setting
  61. // of configuration items.
  62. // -----------------------------------------------------
  63. $segments = explode('.', $key);
  64. if (count($segments) < 2)
  65. {
  66. throw new \Exception("Invalid configuration key [$key].");
  67. }
  68. return array($segments[0], implode('.', array_slice($segments, 1)));
  69. }
  70. /**
  71. * Load all of the configuration items.
  72. *
  73. * @param string $file
  74. * @return void
  75. */
  76. public static function load($file)
  77. {
  78. // -----------------------------------------------------
  79. // If we have already loaded the file, bail out.
  80. // -----------------------------------------------------
  81. if (array_key_exists($file, static::$items))
  82. {
  83. return;
  84. }
  85. if ( ! file_exists($path = APP_PATH.'config/'.$file.EXT))
  86. {
  87. throw new \Exception("Configuration file [$file] does not exist.");
  88. }
  89. // -----------------------------------------------------
  90. // Load the configuration array into the array of items.
  91. // The items array is keyed by filename.
  92. // -----------------------------------------------------
  93. static::$items[$file] = require $path;
  94. }
  95. }