| @@ 86-105 (lines=20) @@ | ||
| 83 | * @param IConfig $config |
|
| 84 | * @param string $user |
|
| 85 | */ |
|
| 86 | public function __construct($appName, |
|
| 87 | IRequest $request, |
|
| 88 | Data $data, |
|
| 89 | GroupHelper $helper, |
|
| 90 | UserSettings $settings, |
|
| 91 | IURLGenerator $urlGenerator, |
|
| 92 | IManager $activityManager, |
|
| 93 | IFactory $l10nFactory, |
|
| 94 | IConfig $config, |
|
| 95 | $user) { |
|
| 96 | parent::__construct($appName, $request); |
|
| 97 | $this->data = $data; |
|
| 98 | $this->helper = $helper; |
|
| 99 | $this->settings = $settings; |
|
| 100 | $this->urlGenerator = $urlGenerator; |
|
| 101 | $this->activityManager = $activityManager; |
|
| 102 | $this->l10nFactory = $l10nFactory; |
|
| 103 | $this->config = $config; |
|
| 104 | $this->user = $user; |
|
| 105 | } |
|
| 106 | ||
| 107 | /** |
|
| 108 | * @PublicPage |
|
| @@ 73-90 (lines=18) @@ | ||
| 70 | * @param IL10N $l10n |
|
| 71 | * @param string $user |
|
| 72 | */ |
|
| 73 | public function __construct($appName, |
|
| 74 | IRequest $request, |
|
| 75 | IConfig $config, |
|
| 76 | ISecureRandom $random, |
|
| 77 | IURLGenerator $urlGenerator, |
|
| 78 | Data $data, |
|
| 79 | UserSettings $userSettings, |
|
| 80 | IL10N $l10n, |
|
| 81 | $user) { |
|
| 82 | parent::__construct($appName, $request); |
|
| 83 | $this->config = $config; |
|
| 84 | $this->random = $random; |
|
| 85 | $this->urlGenerator = $urlGenerator; |
|
| 86 | $this->data = $data; |
|
| 87 | $this->userSettings = $userSettings; |
|
| 88 | $this->l10n = $l10n; |
|
| 89 | $this->user = $user; |
|
| 90 | } |
|
| 91 | ||
| 92 | /** |
|
| 93 | * @NoAdminRequired |
|