config.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 key to separate the file and key name.
  19. // -----------------------------------------------------
  20. list($file, $key) = static::parse($key);
  21. // -----------------------------------------------------
  22. // Load the appropriate configuration file.
  23. // -----------------------------------------------------
  24. static::load($file);
  25. return (array_key_exists($key, static::$items[$file])) ? static::$items[$file][$key] : null;
  26. }
  27. /**
  28. * Set a configuration item.
  29. *
  30. * @param string $key
  31. * @param mixed $value
  32. * @return void
  33. */
  34. public static function set($key, $value)
  35. {
  36. // -----------------------------------------------------
  37. // Parse the key to separate the file and key name.
  38. // -----------------------------------------------------
  39. list($file, $key) = static::parse($key);
  40. // -----------------------------------------------------
  41. // Load the appropriate configuration file.
  42. // -----------------------------------------------------
  43. static::load($file);
  44. static::$items[$file][$key] = $value;
  45. }
  46. /**
  47. * Parse a configuration key.
  48. *
  49. * @param string $key
  50. * @return array
  51. */
  52. private static function parse($key)
  53. {
  54. $segments = explode('.', $key);
  55. if (count($segments) < 2)
  56. {
  57. throw new \Exception("Invalid configuration key [$key].");
  58. }
  59. // -----------------------------------------------------
  60. // The left side of the dot is the file name, while
  61. // the right side of the dot is the item within that
  62. // file being requested.
  63. // -----------------------------------------------------
  64. return array($segments[0], implode('.', array_slice($segments, 1)));
  65. }
  66. /**
  67. * Load all of the configuration items.
  68. *
  69. * @param string $file
  70. * @return void
  71. */
  72. public static function load($file)
  73. {
  74. // -----------------------------------------------------
  75. // If we have already loaded the file, bail out.
  76. // -----------------------------------------------------
  77. if (array_key_exists($file, static::$items))
  78. {
  79. return;
  80. }
  81. if ( ! file_exists($path = APP_PATH.'config/'.$file.EXT))
  82. {
  83. throw new \Exception("Configuration file [$file] does not exist.");
  84. }
  85. static::$items[$file] = require $path;
  86. }
  87. }