2015-06-26 12:03:42 -04:00
|
|
|
<?php
|
2015-09-14 10:54:50 -04:00
|
|
|
/**
|
|
|
|
* Base Configuration class
|
|
|
|
*/
|
2015-06-26 12:03:42 -04:00
|
|
|
|
2015-09-15 13:19:29 -04:00
|
|
|
namespace Aviat\AnimeClient;
|
2015-06-26 16:39:10 -04:00
|
|
|
|
2015-06-26 12:03:42 -04:00
|
|
|
/**
|
|
|
|
* Wrapper for configuration values
|
|
|
|
*/
|
|
|
|
class Config {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Config object
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2015-06-29 09:46:49 -04:00
|
|
|
protected $config = [];
|
2015-06-26 12:03:42 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param array $config_files
|
|
|
|
*/
|
2015-10-06 13:35:42 -04:00
|
|
|
public function __construct(array $config_files = [])
|
2015-06-26 12:03:42 -04:00
|
|
|
{
|
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
if (empty($config_files))
|
|
|
|
{
|
2015-09-14 10:54:50 -04:00
|
|
|
require_once \_dir(CONF_DIR, 'config.php'); // $config
|
|
|
|
require_once \_dir(CONF_DIR, 'base_config.php'); // $base_config
|
|
|
|
|
|
|
|
$this->config = array_merge($config, $base_config);
|
2015-06-26 12:03:42 -04:00
|
|
|
}
|
2015-06-26 16:39:10 -04:00
|
|
|
else // @codeCoverageIgnoreEnd
|
2015-06-26 12:03:42 -04:00
|
|
|
{
|
2015-09-14 10:54:50 -04:00
|
|
|
$this->config = $config_files;
|
2015-06-26 12:03:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-10-06 11:38:20 -04:00
|
|
|
* Get a config value
|
2015-06-26 12:03:42 -04:00
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-10-06 11:38:20 -04:00
|
|
|
public function get($key)
|
2015-06-26 12:03:42 -04:00
|
|
|
{
|
|
|
|
if (isset($this->config[$key]))
|
|
|
|
{
|
|
|
|
return $this->config[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-10-06 11:38:20 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a config value
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
|
|
|
* @return Config
|
|
|
|
*/
|
|
|
|
public function set($key, $value)
|
|
|
|
{
|
|
|
|
$this->config[$key] = $value;
|
|
|
|
return $this;
|
|
|
|
}
|
2015-06-26 12:03:42 -04:00
|
|
|
}
|
|
|
|
// End of config.php
|