_('Dieses Widget zeigt eine Liste von Vorschlägen interessanter Studiengruppen an.') ]; } public function getPortalTemplate() { $template = $GLOBALS['template_factory']->open('start/studygroups'); $template->proposals = Studip\VueApp::create('StudygroupProposals'); $navigation = new Navigation( _('Neue Studiengruppe anlegen'), URLHelper::getURL('dispatch.php/course/wizard', ['studygroup' => 1]) ); $navigation->setImage(Icon::create('add')); $navigation->setLinkAttributes([ 'data-dialog' => 'reload-on-close', 'title' => _('Neue Studiengruppe anlegen'), ]); $template->icons = [$navigation]; return $template; } }