mirror of
https://github.com/friendica/friendica
synced 2025-04-19 07:10:11 +00:00
Refactor dynamic App::getConfig() to static DI::config()
This commit is contained in:
parent
2bb9e46be3
commit
fceb4f3823
21 changed files with 38 additions and 66 deletions
|
@ -4,23 +4,21 @@ namespace Friendica\Module;
|
|||
|
||||
use Friendica\BaseModule;
|
||||
use Friendica\Core\Addon;
|
||||
use Friendica\Core\System;
|
||||
use Friendica\DI;
|
||||
use Friendica\Network\HTTPException\NotFoundException;
|
||||
|
||||
class Statistics extends BaseModule
|
||||
{
|
||||
public static function init(array $parameters = [])
|
||||
{
|
||||
$config = DI::app()->getConfig();
|
||||
|
||||
if (!$config->get("system", "nodeinfo")) {
|
||||
throw new \Friendica\Network\HTTPException\NotFoundException();
|
||||
if (!DI::config()->get("system", "nodeinfo")) {
|
||||
throw new NotFoundException();
|
||||
}
|
||||
}
|
||||
|
||||
public static function rawContent(array $parameters = [])
|
||||
{
|
||||
$config = DI::app()->getConfig();
|
||||
$config = DI::config();
|
||||
$logger = DI::app()->getLogger();
|
||||
|
||||
$registration_open =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue