*/ class Config extends \Asika\SimpleConsole\Console { protected $helpOptions = ['h', 'help', '?']; protected function getHelp() { $help = << [-h|--help|-?] [-v] bin/console config [-h|--help|-?] [-v] bin/console config [-h|--help|-?] [-v] Description bin/console config Lists all config values bin/console config Lists all config values in the provided category bin/console config Shows the value of the provided key in the category bin/console config Sets the value of the provided key in the category Notes: Setting config entries which are manually set in .htconfig.php may result in conflict between database settings and the manual startup settings. Options -h|--help|-? Show help information -v Show more debug information. HELP; return $help; } protected function doExecute() { $a = get_app(); if ($this->getOption('v')) { $this->out('Executable: ' . $this->executable); $this->out('Class: ' . __CLASS__); $this->out('Arguments: ' . var_export($this->args, true)); $this->out('Options: ' . var_export($this->options, true)); } if (count($this->args) > 3) { throw new CommandArgsException('Too many arguments'); } require_once '.htconfig.php'; $result = dba::connect($db_host, $db_user, $db_pass, $db_data); unset($db_host, $db_user, $db_pass, $db_data); if (!$result) { throw new \RuntimeException('Unable to connect to database'); } if (count($this->args) == 3) { Core\Config::set($this->getArgument(0), $this->getArgument(1), $this->getArgument(2)); $this->out("config[{$this->getArgument(0)}][{$this->getArgument(1)}] = " . Core\Config::get($this->getArgument(0), $this->getArgument(1))); } if (count($this->args) == 2) { $this->out("config[{$this->getArgument(0)}][{$this->getArgument(1)}] = " . Core\Config::get($this->getArgument(0), $this->getArgument(1))); } if (count($this->args) == 1) { Core\Config::load($this->getArgument(0)); $a = get_app(); if (!is_null($a->config[$this->getArgument(0)])) { foreach ($a->config[$this->getArgument(0)] as $k => $x) { $this->out("config[{$this->getArgument(0)}][{$k}] = " . $x); } } else { $this->out('Config section ' . $this->getArgument(0) . ' returned nothing'); } } if (count($this->args) == 0) { $configs = dba::select('config'); foreach ($configs as $config) { $this->out("config[{$config['cat']}][{$config['k']}] = " . $config['v']); } } return 0; } }