mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-07 20:04:32 +02:00
Merge pull request #14932 from Art4/fix-14930
Add missing EventDispatcher dependency in Profile module
This commit is contained in:
commit
292b55ede6
1 changed files with 35 additions and 13 deletions
|
@ -23,6 +23,7 @@ use Friendica\Module\Response;
|
||||||
use Friendica\Profile\ProfileField\Repository\ProfileField;
|
use Friendica\Profile\ProfileField\Repository\ProfileField;
|
||||||
use Friendica\Util\DateTimeFormat;
|
use Friendica\Util\DateTimeFormat;
|
||||||
use Friendica\Util\Profiler;
|
use Friendica\Util\Profiler;
|
||||||
|
use Psr\EventDispatcher\EventDispatcherInterface;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -56,9 +57,29 @@ class Index extends BaseModule
|
||||||
private $pConfig;
|
private $pConfig;
|
||||||
/** @var Mode */
|
/** @var Mode */
|
||||||
private $mode;
|
private $mode;
|
||||||
|
private EventDispatcherInterface $eventDispatcher;
|
||||||
|
|
||||||
public function __construct(Mode $mode, IManagePersonalConfigValues $pConfig, Conversation $conversation, DateTimeFormat $dateTimeFormat, ProfileField $profileField, Page $page, IManageConfigValues $config, IHandleUserSessions $session, AppHelper $appHelper, Database $database, L10n $l10n, BaseURL $baseUrl, Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
|
public function __construct(
|
||||||
{
|
Mode $mode,
|
||||||
|
IManagePersonalConfigValues $pConfig,
|
||||||
|
Conversation $conversation,
|
||||||
|
DateTimeFormat $dateTimeFormat,
|
||||||
|
ProfileField $profileField,
|
||||||
|
Page $page,
|
||||||
|
IManageConfigValues $config,
|
||||||
|
IHandleUserSessions $session,
|
||||||
|
AppHelper $appHelper,
|
||||||
|
Database $database,
|
||||||
|
EventDispatcherInterface $eventDispatcher,
|
||||||
|
L10n $l10n,
|
||||||
|
BaseURL $baseUrl,
|
||||||
|
Arguments $args,
|
||||||
|
LoggerInterface $logger,
|
||||||
|
Profiler $profiler,
|
||||||
|
Response $response,
|
||||||
|
array $server,
|
||||||
|
array $parameters = []
|
||||||
|
) {
|
||||||
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
|
||||||
|
|
||||||
$this->database = $database;
|
$this->database = $database;
|
||||||
|
@ -71,11 +92,12 @@ class Index extends BaseModule
|
||||||
$this->conversation = $conversation;
|
$this->conversation = $conversation;
|
||||||
$this->pConfig = $pConfig;
|
$this->pConfig = $pConfig;
|
||||||
$this->mode = $mode;
|
$this->mode = $mode;
|
||||||
|
$this->eventDispatcher = $eventDispatcher;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function rawContent(array $request = [])
|
protected function rawContent(array $request = [])
|
||||||
{
|
{
|
||||||
(new Profile($this->profileField, $this->page, $this->config, $this->session, $this->appHelper, $this->database, $this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->rawContent();
|
(new Profile($this->profileField, $this->page, $this->config, $this->session, $this->appHelper, $this->database, $this->eventDispatcher, $this->l10n, $this->baseUrl, $this->args, $this->logger, $this->profiler, $this->response, $this->server, $this->parameters))->rawContent();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function content(array $request = []): string
|
protected function content(array $request = []): string
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue