request = $request; } public function renderWidgetContent(): string { $typo3Information = new Typo3Information(); $typo3Version = new Typo3Version(); $view = $this->backendViewFactory->create($this->request); $view->assignMultiple([ 'title' => 'TYPO3 CMS ' . $typo3Version->getVersion(), 'copyrightYear' => $typo3Information->getCopyrightYear(), 'currentVersion' => $typo3Version->getVersion(), 'donationUrl' => $typo3Information::URL_DONATE, 'copyRightNotice' => $typo3Information->getCopyrightNotice(), 'options' => $this->options, 'configuration' => $this->configuration, ]); return $view->render('Widget/T3GeneralInformationWidget'); } public function getOptions(): array { return $this->options; } }