Refactor dynamic App::getConfig() to static DI::config()
This commit is contained in:
@@ -92,8 +92,7 @@ class Search
|
||||
*/
|
||||
public static function getContactsFromGlobalDirectory($search, $type = self::TYPE_ALL, $page = 1)
|
||||
{
|
||||
$config = DI::app()->getConfig();
|
||||
$server = $config->get('system', 'directory', self::DEFAULT_DIRECTORY);
|
||||
$server = DI::config()->get('system', 'directory', self::DEFAULT_DIRECTORY);
|
||||
|
||||
$searchUrl = $server . '/search';
|
||||
|
||||
@@ -158,7 +157,7 @@ class Search
|
||||
*/
|
||||
public static function getContactsFromLocalDirectory($search, $type = self::TYPE_ALL, $start = 0, $itemPage = 80)
|
||||
{
|
||||
$config = DI::app()->getConfig();
|
||||
$config = DI::config();
|
||||
|
||||
$diaspora = $config->get('system', 'diaspora_enabled') ? Protocol::DIASPORA : Protocol::DFRN;
|
||||
$ostatus = !$config->get('system', 'ostatus_disabled') ? Protocol::OSTATUS : Protocol::DFRN;
|
||||
|
||||
@@ -1086,7 +1086,7 @@ class Worker
|
||||
$args = ['no_cron' => !$do_cron];
|
||||
|
||||
$a = get_app();
|
||||
$process = new Core\Process($a->getLogger(), $a->getMode(), $a->getConfig(), $a->getBasePath());
|
||||
$process = new Core\Process($a->getLogger(), $a->getMode(), DI::config(), $a->getBasePath());
|
||||
$process->run($command, $args);
|
||||
|
||||
// after spawning we have to remove the flag.
|
||||
|
||||
Reference in New Issue
Block a user