use of org.olat.core.commons.services.commentAndRating.ui.UserCommentsController in project openolat by klemens.
the class RepositoryEntryListController method doOpenComments.
protected void doOpenComments(UserRequest ureq, RepositoryEntryRow row) {
if (commentsCtrl != null)
return;
boolean anonym = ureq.getUserSession().getRoles().isGuestOnly();
CommentAndRatingSecurityCallback secCallback = new CommentAndRatingDefaultSecurityCallback(getIdentity(), false, anonym);
commentsCtrl = new UserCommentsController(ureq, getWindowControl(), row.getRepositoryEntryResourceable(), null, secCallback);
commentsCtrl.setUserObject(row);
listenTo(commentsCtrl);
cmc = new CloseableModalController(getWindowControl(), "close", commentsCtrl.getInitialComponent(), true, translate("comments"));
listenTo(cmc);
cmc.activate();
}
use of org.olat.core.commons.services.commentAndRating.ui.UserCommentsController in project openolat by klemens.
the class TableOfContentController method doOpenComments.
private void doOpenComments(UserRequest ureq, PageRow pageRow) {
CommentAndRatingSecurityCallback commentSecCallback;
if (PageStatus.isClosed(pageRow.getPage())) {
commentSecCallback = new ReadOnlyCommentsSecurityCallback();
} else {
commentSecCallback = new CommentAndRatingDefaultSecurityCallback(getIdentity(), false, false);
}
OLATResourceable ores = OresHelper.createOLATResourceableInstance(Page.class, pageRow.getKey());
commentsCtrl = new UserCommentsController(ureq, getWindowControl(), ores, null, commentSecCallback);
listenTo(commentsCtrl);
String title = translate("comment.title");
cmc = new CloseableModalController(getWindowControl(), null, commentsCtrl.getInitialComponent(), true, title, true);
listenTo(cmc);
cmc.activate();
}
Aggregations