Move PConfig::get() to DI::pConfig()->get()

This commit is contained in:
nupplaPhil
2020-01-18 16:50:56 +01:00
parent 2a35176588
commit ea3a9052d8
42 changed files with 414 additions and 412 deletions

View File

@@ -53,9 +53,9 @@ function fromapp_settings(&$a, &$s)
/* Get the current state of our config variable */
$fromapp = PConfig::get(local_user(), 'fromapp', 'app', '');
$fromapp = DI::pConfig()->get(local_user(), 'fromapp', 'app', '');
$force = intval(PConfig::get(local_user(), 'fromapp', 'force'));
$force = intval(DI::pConfig()->get(local_user(), 'fromapp', 'force'));
$force_enabled = (($force) ? ' checked="checked" ' : '');
@@ -94,8 +94,8 @@ function fromapp_post_hook(&$a, &$item)
return;
}
$app = PConfig::get(local_user(), 'fromapp', 'app');
$force = intval(PConfig::get(local_user(), 'fromapp', 'force'));
$app = DI::pConfig()->get(local_user(), 'fromapp', 'app');
$force = intval(DI::pConfig()->get(local_user(), 'fromapp', 'force'));
if (is_null($app) || (! strlen($app))) {
return;