| @@ 83-103 (lines=21) @@ | ||
| 80 | * @param IRootFolder $rootFolder |
|
| 81 | * @param ITempManager $tempManager |
|
| 82 | */ |
|
| 83 | public function __construct( |
|
| 84 | $appName, |
|
| 85 | IRequest $request, |
|
| 86 | IConfig $config, |
|
| 87 | ThemingDefaults $template, |
|
| 88 | Util $util, |
|
| 89 | ITimeFactory $timeFactory, |
|
| 90 | IL10N $l, |
|
| 91 | IRootFolder $rootFolder, |
|
| 92 | ITempManager $tempManager |
|
| 93 | ) { |
|
| 94 | parent::__construct($appName, $request); |
|
| 95 | ||
| 96 | $this->template = $template; |
|
| 97 | $this->util = $util; |
|
| 98 | $this->timeFactory = $timeFactory; |
|
| 99 | $this->l = $l; |
|
| 100 | $this->config = $config; |
|
| 101 | $this->rootFolder = $rootFolder; |
|
| 102 | $this->tempManager = $tempManager; |
|
| 103 | } |
|
| 104 | ||
| 105 | /** |
|
| 106 | * @param string $setting |
|
| @@ 66-83 (lines=18) @@ | ||
| 63 | * @param UpdateChecker $updateChecker |
|
| 64 | * @param IDateTimeFormatter $dateTimeFormatter |
|
| 65 | */ |
|
| 66 | public function __construct($appName, |
|
| 67 | IRequest $request, |
|
| 68 | IJobList $jobList, |
|
| 69 | ISecureRandom $secureRandom, |
|
| 70 | IConfig $config, |
|
| 71 | ITimeFactory $timeFactory, |
|
| 72 | IL10N $l10n, |
|
| 73 | UpdateChecker $updateChecker, |
|
| 74 | IDateTimeFormatter $dateTimeFormatter) { |
|
| 75 | parent::__construct($appName, $request); |
|
| 76 | $this->jobList = $jobList; |
|
| 77 | $this->secureRandom = $secureRandom; |
|
| 78 | $this->config = $config; |
|
| 79 | $this->timeFactory = $timeFactory; |
|
| 80 | $this->l10n = $l10n; |
|
| 81 | $this->updateChecker = $updateChecker; |
|
| 82 | $this->dateTimeFormatter = $dateTimeFormatter; |
|
| 83 | } |
|
| 84 | ||
| 85 | /** |
|
| 86 | * @return TemplateResponse |
|