mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 08:14:25 +02:00
Refactor dynamic App::getLogger() to static DI::logger()
This commit is contained in:
parent
fceb4f3823
commit
e2b2778e0a
9 changed files with 11 additions and 22 deletions
|
@ -118,7 +118,7 @@ class Summary extends BaseAdminModule
|
|||
$currBasepath = DI::config()->get('system', 'basepath');
|
||||
if ($confBasepath !== $currBasepath || !is_dir($currBasepath)) {
|
||||
if (is_dir($confBasepath) && Config::set('system', 'basepath', $confBasepath)) {
|
||||
$a->getLogger()->info('Friendica\'s system.basepath was updated successfully.', [
|
||||
DI::logger()->info('Friendica\'s system.basepath was updated successfully.', [
|
||||
'from' => $currBasepath,
|
||||
'to' => $confBasepath,
|
||||
]);
|
||||
|
@ -126,7 +126,7 @@ class Summary extends BaseAdminModule
|
|||
$currBasepath,
|
||||
$confBasepath);
|
||||
} elseif (!is_dir($currBasepath)) {
|
||||
$a->getLogger()->alert('Friendica\'s system.basepath is wrong.', [
|
||||
DI::logger()->alert('Friendica\'s system.basepath is wrong.', [
|
||||
'from' => $currBasepath,
|
||||
'to' => $confBasepath,
|
||||
]);
|
||||
|
@ -134,7 +134,7 @@ class Summary extends BaseAdminModule
|
|||
$currBasepath,
|
||||
$confBasepath);
|
||||
} else {
|
||||
$a->getLogger()->alert('Friendica\'s system.basepath is wrong.', [
|
||||
DI::logger()->alert('Friendica\'s system.basepath is wrong.', [
|
||||
'from' => $currBasepath,
|
||||
'to' => $confBasepath,
|
||||
]);
|
||||
|
|
|
@ -20,7 +20,7 @@ class RemoveTag extends BaseModule
|
|||
}
|
||||
|
||||
$app = DI::app();
|
||||
$logger = $app->getLogger();
|
||||
$logger = DI::logger();
|
||||
|
||||
$item_id = (($app->argc > 1) ? intval($app->argv[1]) : 0);
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ class SaveTag extends BaseModule
|
|||
public static function rawContent(array $parameters = [])
|
||||
{
|
||||
$a = DI::app();
|
||||
$logger = $a->getLogger();
|
||||
$logger = DI::logger();
|
||||
|
||||
$term = XML::unescape(trim($_GET['term'] ?? ''));
|
||||
// @TODO: Replace with parameter from router
|
||||
|
|
|
@ -19,7 +19,7 @@ class Statistics extends BaseModule
|
|||
public static function rawContent(array $parameters = [])
|
||||
{
|
||||
$config = DI::config();
|
||||
$logger = DI::app()->getLogger();
|
||||
$logger = DI::logger();
|
||||
|
||||
$registration_open =
|
||||
intval($config->get('config', 'register_policy')) !== Register::CLOSED
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue