mirror of
https://github.com/friendica/friendica
synced 2025-04-28 01:10:12 +00:00
1) Refactor App->config[] into Core\Config
This commit is contained in:
parent
82f713cb7f
commit
be6b229534
11 changed files with 191 additions and 177 deletions
|
@ -124,9 +124,10 @@ HELP;
|
|||
$cat = $this->getArgument(0);
|
||||
Core\Config::load($cat);
|
||||
|
||||
if (!is_null($a->config[$cat])) {
|
||||
if (Core\Config::getConfigValue($cat) !== null) {
|
||||
$this->out("[{$cat}]");
|
||||
foreach ($a->config[$cat] as $key => $value) {
|
||||
$catVal = Core\Config::getConfigValue($cat);
|
||||
foreach ($catVal as $key => $value) {
|
||||
if (is_array($value)) {
|
||||
foreach ($value as $k => $v) {
|
||||
$this->out("{$key}[{$k}] => " . $v);
|
||||
|
@ -147,7 +148,8 @@ HELP;
|
|||
$this->out('Warning: The JIT (Just In Time) Config adapter doesn\'t support loading the entire configuration, showing file config only');
|
||||
}
|
||||
|
||||
foreach ($a->config as $cat => $section) {
|
||||
$config = Core\Config::getAll();
|
||||
foreach ($config as $cat => $section) {
|
||||
if (is_array($section)) {
|
||||
foreach ($section as $key => $value) {
|
||||
if (is_array($value)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue