config.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. // Parse the configuration key.
  19. // ---------------------------------------------
  20. list($file, $key) = static::parse($key);
  21. // ---------------------------------------------
  22. // Load the configuration file.
  23. // ---------------------------------------------
  24. static::load($file);
  25. // ---------------------------------------------
  26. // Return the requested item.
  27. // ---------------------------------------------
  28. return (array_key_exists($key, static::$items[$file])) ? static::$items[$file][$key] : null;
  29. }
  30. /**
  31. * Set a configuration item.
  32. *
  33. * @param string $key
  34. * @param mixed $value
  35. * @return void
  36. */
  37. public static function set($file, $value)
  38. {
  39. // ---------------------------------------------
  40. // Parse the configuration key.
  41. // ---------------------------------------------
  42. list($file, $key) = static::parse($key);
  43. // ---------------------------------------------
  44. // Load the configuration file.
  45. // ---------------------------------------------
  46. static::load($file);
  47. // ---------------------------------------------
  48. // Set the item's value.
  49. // ---------------------------------------------
  50. static::$items[$file][$key] = $value;
  51. }
  52. /**
  53. * Parse a configuration key.
  54. *
  55. * @param string $key
  56. * @return array
  57. */
  58. private static function parse($key)
  59. {
  60. // ---------------------------------------------
  61. // Get the key segments.
  62. // ---------------------------------------------
  63. $segments = explode('.', $key);
  64. // ---------------------------------------------
  65. // Validate the key format.
  66. // ---------------------------------------------
  67. if (count($segments) < 2)
  68. {
  69. throw new \Exception("Invalid configuration key [$key].");
  70. }
  71. // ---------------------------------------------
  72. // Return the file and item name.
  73. // ---------------------------------------------
  74. return array($segments[0], implode('.', array_slice($segments, 1)));
  75. }
  76. /**
  77. * Load all of the configuration items.
  78. *
  79. * @param string $file
  80. * @return void
  81. */
  82. public static function load($file)
  83. {
  84. // ---------------------------------------------
  85. // If the file has already been loaded, bail.
  86. // ---------------------------------------------
  87. if (array_key_exists($file, static::$items))
  88. {
  89. return;
  90. }
  91. // ---------------------------------------------
  92. // Verify that the configuration file exists.
  93. // ---------------------------------------------
  94. if ( ! file_exists($path = APP_PATH.'config/'.$file.EXT))
  95. {
  96. throw new \Exception("Configuration file [$file] does not exist.");
  97. }
  98. // ---------------------------------------------
  99. // Load the configuration file.
  100. // ---------------------------------------------
  101. static::$items[$file] = require $path;
  102. }
  103. }