mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 20:40:56 +01:00
Mark customized config values in Current Settings
Test Plan: /config/all/ Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5677
This commit is contained in:
parent
6229b7bd88
commit
a1664d4c64
1 changed files with 7 additions and 0 deletions
|
@ -7,6 +7,10 @@ final class PhabricatorConfigAllController
|
||||||
$request = $this->getRequest();
|
$request = $this->getRequest();
|
||||||
$user = $request->getUser();
|
$user = $request->getUser();
|
||||||
|
|
||||||
|
$db_values = id(new PhabricatorConfigEntry())
|
||||||
|
->loadAllWhere('namespace = %s', 'default');
|
||||||
|
$db_values = mpull($db_values, null, 'getConfigKey');
|
||||||
|
|
||||||
$rows = array();
|
$rows = array();
|
||||||
$options = PhabricatorApplicationConfigOptions::loadAllOptions();
|
$options = PhabricatorApplicationConfigOptions::loadAllOptions();
|
||||||
ksort($options);
|
ksort($options);
|
||||||
|
@ -22,6 +26,7 @@ final class PhabricatorConfigAllController
|
||||||
$value = PhabricatorConfigJSON::prettyPrintJSON($value);
|
$value = PhabricatorConfigJSON::prettyPrintJSON($value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$db_value = idx($db_values, $key);
|
||||||
$rows[] = array(
|
$rows[] = array(
|
||||||
phutil_tag(
|
phutil_tag(
|
||||||
'a',
|
'a',
|
||||||
|
@ -30,6 +35,7 @@ final class PhabricatorConfigAllController
|
||||||
),
|
),
|
||||||
$key),
|
$key),
|
||||||
$value,
|
$value,
|
||||||
|
$db_value && !$db_value->getIsDeleted() ? pht('Customized') : '',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$table = id(new AphrontTableView($rows))
|
$table = id(new AphrontTableView($rows))
|
||||||
|
@ -43,6 +49,7 @@ final class PhabricatorConfigAllController
|
||||||
array(
|
array(
|
||||||
pht('Key'),
|
pht('Key'),
|
||||||
pht('Value'),
|
pht('Value'),
|
||||||
|
pht('Customized'),
|
||||||
));
|
));
|
||||||
|
|
||||||
$title = pht('Current Settings');
|
$title = pht('Current Settings');
|
||||||
|
|
Loading…
Reference in a new issue