pageTitle = new NonEmptyStringType($this->languageTextManager->get_text('sample_title')); } public function actionDefault() { $template = new ExistingFile(new NonEmptyStringType(DIR_FS_CATALOG . 'GXModules/Samples/ModulCenter/Admin/Html/sample_configuration.html')); $data = MainFactory::create('KeyValueCollection', [ 'greeting' => 'Hallo Welt!', ]); return MainFactory::create('AdminLayoutHttpControllerResponse', $this->pageTitle, $template, $data); } }