use of org.olat.modules.portfolio.ui.media.CollectCitationMediaController in project OpenOLAT by OpenOLAT.
the class MediaCenterController method doAddCitationMedia.
private void doAddCitationMedia(UserRequest ureq) {
if (citationUploadCtrl != null)
return;
citationUploadCtrl = new CollectCitationMediaController(ureq, getWindowControl());
listenTo(citationUploadCtrl);
String title = translate("add.citation");
cmc = new CloseableModalController(getWindowControl(), null, citationUploadCtrl.getInitialComponent(), true, title, true);
listenTo(cmc);
cmc.activate();
}
use of org.olat.modules.portfolio.ui.media.CollectCitationMediaController in project openolat by klemens.
the class MediaCenterController method doAddCitationMedia.
private void doAddCitationMedia(UserRequest ureq) {
if (citationUploadCtrl != null)
return;
citationUploadCtrl = new CollectCitationMediaController(ureq, getWindowControl());
listenTo(citationUploadCtrl);
String title = translate("add.citation");
cmc = new CloseableModalController(getWindowControl(), null, citationUploadCtrl.getInitialComponent(), true, title, true);
listenTo(cmc);
cmc.activate();
}
Aggregations