use of org.olat.repository.ui.list.RepositoryEntryDetailsController in project OpenOLAT by OpenOLAT.
the class RepositoryEntryRuntimeController method doDetails.
protected void doDetails(UserRequest ureq) {
WindowControl bwControl = getSubWindowControl("Infos");
RepositoryEntry entry = loadRepositoryEntry();
RepositoryEntryDetailsController ctrl = new RepositoryEntryDetailsController(ureq, addToHistory(ureq, bwControl), entry, true);
listenTo(ctrl);
detailsCtrl = pushController(ureq, translate("details.header"), ctrl);
currentToolCtr = detailsCtrl;
}
use of org.olat.repository.ui.list.RepositoryEntryDetailsController in project openolat by klemens.
the class RepositoryEntryRuntimeController method doDetails.
protected void doDetails(UserRequest ureq) {
WindowControl bwControl = getSubWindowControl("Infos");
RepositoryEntry entry = loadRepositoryEntry();
RepositoryEntryDetailsController ctrl = new RepositoryEntryDetailsController(ureq, addToHistory(ureq, bwControl), entry, true);
listenTo(ctrl);
detailsCtrl = pushController(ureq, translate("details.header"), ctrl);
currentToolCtr = detailsCtrl;
}
Aggregations