_('Dieses Widget zeigt eine Liste Ihrer Studiengruppen an.') ]; } public function getPortalTemplate() { $template = $GLOBALS['template_factory']->open('start/my_studygroups'); $controller = app(\Trails\Dispatcher::class)->load_controller('my_studygroups'); $response = $controller->relayWithRedirect('my_studygroups/index/true'); $template->content = $response->body; $navigation = new Navigation('', 'dispatch.php/course/wizard?studygroup=1'); $navigation->setImage(Icon::create('add', Icon::ROLE_CLICKABLE, ['title' => _('Neue Studiengruppe anlegen')])); $navigation->setLinkAttributes(['data-dialog' => 'reload-on-close']); $template->icons = [$navigation]; return $template; } }