request = $request; } public function renderWidgetContent(): string { $view = $this->backendViewFactory->create($this->request, ['typo3/cms-dashboard', 'typo3/cms-seo']); $view->assignMultiple([ 'pages' => $this->dataProvider->getPages(), 'options' => $this->getOptions(), 'configuration' => $this->configuration, ]); return $view->render('Widget/PagesWithoutDescription'); } public function getOptions(): array { return $this->options; } }