Search in sources :

Example 1 with TitleInfo

use of org.olat.core.gui.control.generic.title.TitleInfo in project OpenOLAT by OpenOLAT.

the class CollaborationTools method createForumController.

/**
 * @param ureq
 * @param wControl
 * @param isAdmin
 * @param subsContext the subscriptioncontext if subscriptions to this forum
 *          should be possible
 * @return a forum controller
 */
public Controller createForumController(UserRequest ureq, WindowControl wControl, boolean isAdmin, boolean isGuestOnly, final SubscriptionContext subsContext) {
    final boolean isAdm = isAdmin;
    final boolean isGuest = isGuestOnly;
    Forum forum = getForum();
    Translator trans = Util.createPackageTranslator(this.getClass(), ureq.getLocale());
    TitleInfo titleInfo = new TitleInfo(null, trans.translate("collabtools.named.hasForum"));
    titleInfo.setSeparatorEnabled(true);
    Controller forumController = ForumUIFactory.getTitledForumController(ureq, wControl, forum, new ForumCallback() {

        @Override
        public boolean mayUsePseudonym() {
            return false;
        }

        @Override
        public boolean mayOpenNewThread() {
            return true;
        }

        @Override
        public boolean mayReplyMessage() {
            return true;
        }

        @Override
        public boolean mayEditOwnMessage() {
            return true;
        }

        @Override
        public boolean mayDeleteOwnMessage() {
            return true;
        }

        @Override
        public boolean mayEditMessageAsModerator() {
            return isAdm;
        }

        @Override
        public boolean mayDeleteMessageAsModerator() {
            return isAdm;
        }

        @Override
        public boolean mayArchiveForum() {
            return !isGuest;
        }

        @Override
        public boolean mayFilterForUser() {
            return isAdm;
        }

        @Override
        public SubscriptionContext getSubscriptionContext() {
            return subsContext;
        }
    }, titleInfo);
    return forumController;
}
Also used : Translator(org.olat.core.gui.translator.Translator) TitleInfo(org.olat.core.gui.control.generic.title.TitleInfo) ForumCallback(org.olat.modules.fo.ForumCallback) SubscriptionContext(org.olat.core.commons.services.notifications.SubscriptionContext) WeeklyCalendarController(org.olat.commons.calendar.ui.WeeklyCalendarController) EPCreateMapController(org.olat.portfolio.ui.structel.EPCreateMapController) OpenMeetingsRunController(org.olat.modules.openmeetings.ui.OpenMeetingsRunController) ChatToolController(org.olat.instantMessaging.ui.ChatToolController) CourseLinkProviderController(org.olat.course.run.calendar.CourseLinkProviderController) BinderController(org.olat.modules.portfolio.ui.BinderController) FolderRunController(org.olat.core.commons.modules.bc.FolderRunController) ContactFormController(org.olat.modules.co.ContactFormController) Controller(org.olat.core.gui.control.Controller) CalendarController(org.olat.commons.calendar.ui.CalendarController) InfoGroupRunController(org.olat.group.ui.run.InfoGroupRunController) Forum(org.olat.modules.fo.Forum)

Example 2 with TitleInfo

use of org.olat.core.gui.control.generic.title.TitleInfo in project OpenOLAT by OpenOLAT.

the class TitledWrapperHelper method getWrapper.

public static Controller getWrapper(UserRequest ureq, WindowControl wControl, Controller controller, CourseNode courseNode, String iconCssClass) {
    String displayOption = courseNode.getDisplayOption();
    if (CourseNode.DISPLAY_OPTS_CONTENT.equals(displayOption)) {
    // don't change anything
    } else if (CourseNode.DISPLAY_OPTS_SHORT_TITLE_CONTENT.equals(displayOption)) {
        if (StringHelper.containsNonWhitespace(courseNode.getShortTitle())) {
            TitleInfo titleInfo = new TitleInfo(null, courseNode.getShortTitle(), null, courseNode.getIdent());
            titleInfo.setDescriptionCssClass("o_objectives o_user_content_block");
            if (StringHelper.containsNonWhitespace(iconCssClass)) {
                titleInfo.setIconCssClass(iconCssClass);
            }
            controller = new TitledWrapperController(ureq, wControl, controller, null, titleInfo);
        }
    } else if (CourseNode.DISPLAY_OPTS_TITLE_CONTENT.equals(displayOption)) {
        if (StringHelper.containsNonWhitespace(courseNode.getLongTitle())) {
            TitleInfo titleInfo = new TitleInfo(null, courseNode.getLongTitle(), null, courseNode.getIdent());
            titleInfo.setDescriptionCssClass("o_objectives o_user_content_block");
            if (StringHelper.containsNonWhitespace(iconCssClass)) {
                titleInfo.setIconCssClass(iconCssClass);
            }
            controller = new TitledWrapperController(ureq, wControl, controller, null, titleInfo);
        }
    } else if (CourseNode.DISPLAY_OPTS_SHORT_TITLE_DESCRIPTION_CONTENT.equals(displayOption)) {
        String title = courseNode.getShortTitle();
        String description = null;
        if (StringHelper.containsNonWhitespace(courseNode.getLearningObjectives())) {
            if (StringHelper.containsNonWhitespace(title)) {
                description = courseNode.getLearningObjectives();
            }
        }
        if (StringHelper.containsNonWhitespace(title) || StringHelper.containsNonWhitespace(description)) {
            TitleInfo titleInfo = new TitleInfo(null, title, description, courseNode.getIdent());
            titleInfo.setDescriptionCssClass("o_objectives o_user_content_block");
            if (StringHelper.containsNonWhitespace(iconCssClass)) {
                titleInfo.setIconCssClass(iconCssClass);
            }
            controller = new TitledWrapperController(ureq, wControl, controller, null, titleInfo);
        }
    } else if (CourseNode.DISPLAY_OPTS_TITLE_DESCRIPTION_CONTENT.equals(displayOption)) {
        String title = courseNode.getLongTitle();
        String description = null;
        if (StringHelper.containsNonWhitespace(courseNode.getLearningObjectives())) {
            description = courseNode.getLearningObjectives();
        }
        if (StringHelper.containsNonWhitespace(title) || StringHelper.containsNonWhitespace(description)) {
            TitleInfo titleInfo = new TitleInfo(null, title, description, courseNode.getIdent());
            titleInfo.setDescriptionCssClass("o_objectives o_user_content_block");
            if (StringHelper.containsNonWhitespace(iconCssClass)) {
                titleInfo.setIconCssClass(iconCssClass);
            }
            controller = new TitledWrapperController(ureq, wControl, controller, null, titleInfo);
        }
    }
    return controller;
}
Also used : TitledWrapperController(org.olat.core.gui.control.generic.title.TitledWrapperController) TitleInfo(org.olat.core.gui.control.generic.title.TitleInfo)

Example 3 with TitleInfo

use of org.olat.core.gui.control.generic.title.TitleInfo in project openolat by klemens.

the class TitledWrapperHelper method getWrapper.

public static Controller getWrapper(UserRequest ureq, WindowControl wControl, Controller controller, CourseNode courseNode, String iconCssClass) {
    String displayOption = courseNode.getDisplayOption();
    if (CourseNode.DISPLAY_OPTS_CONTENT.equals(displayOption)) {
    // don't change anything
    } else if (CourseNode.DISPLAY_OPTS_SHORT_TITLE_CONTENT.equals(displayOption)) {
        if (StringHelper.containsNonWhitespace(courseNode.getShortTitle())) {
            TitleInfo titleInfo = new TitleInfo(null, courseNode.getShortTitle(), null, courseNode.getIdent());
            titleInfo.setDescriptionCssClass("o_objectives o_user_content_block");
            if (StringHelper.containsNonWhitespace(iconCssClass)) {
                titleInfo.setIconCssClass(iconCssClass);
            }
            controller = new TitledWrapperController(ureq, wControl, controller, null, titleInfo);
        }
    } else if (CourseNode.DISPLAY_OPTS_TITLE_CONTENT.equals(displayOption)) {
        if (StringHelper.containsNonWhitespace(courseNode.getLongTitle())) {
            TitleInfo titleInfo = new TitleInfo(null, courseNode.getLongTitle(), null, courseNode.getIdent());
            titleInfo.setDescriptionCssClass("o_objectives o_user_content_block");
            if (StringHelper.containsNonWhitespace(iconCssClass)) {
                titleInfo.setIconCssClass(iconCssClass);
            }
            controller = new TitledWrapperController(ureq, wControl, controller, null, titleInfo);
        }
    } else if (CourseNode.DISPLAY_OPTS_SHORT_TITLE_DESCRIPTION_CONTENT.equals(displayOption)) {
        String title = courseNode.getShortTitle();
        String description = null;
        if (StringHelper.containsNonWhitespace(courseNode.getLearningObjectives())) {
            if (StringHelper.containsNonWhitespace(title)) {
                description = courseNode.getLearningObjectives();
            }
        }
        if (StringHelper.containsNonWhitespace(title) || StringHelper.containsNonWhitespace(description)) {
            TitleInfo titleInfo = new TitleInfo(null, title, description, courseNode.getIdent());
            titleInfo.setDescriptionCssClass("o_objectives o_user_content_block");
            if (StringHelper.containsNonWhitespace(iconCssClass)) {
                titleInfo.setIconCssClass(iconCssClass);
            }
            controller = new TitledWrapperController(ureq, wControl, controller, null, titleInfo);
        }
    } else if (CourseNode.DISPLAY_OPTS_TITLE_DESCRIPTION_CONTENT.equals(displayOption)) {
        String title = courseNode.getLongTitle();
        String description = null;
        if (StringHelper.containsNonWhitespace(courseNode.getLearningObjectives())) {
            description = courseNode.getLearningObjectives();
        }
        if (StringHelper.containsNonWhitespace(title) || StringHelper.containsNonWhitespace(description)) {
            TitleInfo titleInfo = new TitleInfo(null, title, description, courseNode.getIdent());
            titleInfo.setDescriptionCssClass("o_objectives o_user_content_block");
            if (StringHelper.containsNonWhitespace(iconCssClass)) {
                titleInfo.setIconCssClass(iconCssClass);
            }
            controller = new TitledWrapperController(ureq, wControl, controller, null, titleInfo);
        }
    }
    return controller;
}
Also used : TitledWrapperController(org.olat.core.gui.control.generic.title.TitledWrapperController) TitleInfo(org.olat.core.gui.control.generic.title.TitleInfo)

Example 4 with TitleInfo

use of org.olat.core.gui.control.generic.title.TitleInfo in project openolat by klemens.

the class UserCommentDisplayController method event.

/**
 * @see org.olat.core.gui.control.DefaultController#event(org.olat.core.gui.UserRequest,
 *      org.olat.core.gui.components.Component,
 *      org.olat.core.gui.control.Event)
 */
@Override
protected void event(UserRequest ureq, Component source, Event event) {
    if (source == replyLink) {
        // Init reply workflow
        replyCommentFormCtr = new UserCommentFormController(ureq, getWindowControl(), userComment, null, ores, resSubPath);
        listenTo(replyCommentFormCtr);
        User parentUser = userComment.getCreator().getUser();
        String title = translate("comments.coment.reply.title", new String[] { parentUser.getProperty(UserConstants.FIRSTNAME, null), parentUser.getProperty(UserConstants.LASTNAME, null) });
        TitleInfo titleInfo = new TitleInfo(null, title);
        replyTitledWrapperCtr = new TitledWrapperController(ureq, getWindowControl(), replyCommentFormCtr, null, titleInfo);
        listenTo(replyTitledWrapperCtr);
        replyCmc = new CloseableModalController(getWindowControl(), "close", replyTitledWrapperCtr.getInitialComponent());
        replyCmc.activate();
    } else if (source == deleteLink) {
        // Init delete workflow
        List<String> buttonLabels = new ArrayList<String>();
        boolean hasReplies = false;
        for (UserComment comment : allComments) {
            if (comment.getParent() != null && comment.getParent().getKey().equals(userComment.getKey())) {
                hasReplies = true;
                break;
            }
        }
        if (hasReplies) {
            buttonLabels.add(translate("comments.button.delete.without.replies"));
            buttonLabels.add(translate("comments.button.delete.with.replies"));
        } else {
            buttonLabels.add(translate("delete"));
        }
        buttonLabels.add(translate("cancel"));
        String deleteText;
        if (hasReplies) {
            deleteText = translate("comments.dialog.delete.with.replies");
        } else {
            deleteText = translate("comments.dialog.delete");
        }
        deleteDialogCtr = DialogBoxUIFactory.createGenericDialog(ureq, getWindowControl(), translate("comments.dialog.delete.title"), deleteText, buttonLabels);
        listenTo(deleteDialogCtr);
        deleteDialogCtr.activate();
        // Add replies info as user object to retrieve it later when evaluating the events
        deleteDialogCtr.setUserObject(Boolean.valueOf(hasReplies));
    }
}
Also used : User(org.olat.core.id.User) TitledWrapperController(org.olat.core.gui.control.generic.title.TitledWrapperController) UserComment(org.olat.core.commons.services.commentAndRating.model.UserComment) TitleInfo(org.olat.core.gui.control.generic.title.TitleInfo) CloseableModalController(org.olat.core.gui.control.generic.closablewrapper.CloseableModalController) ArrayList(java.util.ArrayList) List(java.util.List)

Example 5 with TitleInfo

use of org.olat.core.gui.control.generic.title.TitleInfo in project openolat by klemens.

the class CollaborationTools method createForumController.

/**
 * @param ureq
 * @param wControl
 * @param isAdmin
 * @param subsContext the subscriptioncontext if subscriptions to this forum
 *          should be possible
 * @return a forum controller
 */
public Controller createForumController(UserRequest ureq, WindowControl wControl, boolean isAdmin, boolean isGuestOnly, final SubscriptionContext subsContext) {
    final boolean isAdm = isAdmin;
    final boolean isGuest = isGuestOnly;
    Forum forum = getForum();
    Translator trans = Util.createPackageTranslator(this.getClass(), ureq.getLocale());
    TitleInfo titleInfo = new TitleInfo(null, trans.translate("collabtools.named.hasForum"));
    titleInfo.setSeparatorEnabled(true);
    Controller forumController = ForumUIFactory.getTitledForumController(ureq, wControl, forum, new ForumCallback() {

        @Override
        public boolean mayUsePseudonym() {
            return false;
        }

        @Override
        public boolean mayOpenNewThread() {
            return true;
        }

        @Override
        public boolean mayReplyMessage() {
            return true;
        }

        @Override
        public boolean mayEditOwnMessage() {
            return true;
        }

        @Override
        public boolean mayDeleteOwnMessage() {
            return true;
        }

        @Override
        public boolean mayEditMessageAsModerator() {
            return isAdm;
        }

        @Override
        public boolean mayDeleteMessageAsModerator() {
            return isAdm;
        }

        @Override
        public boolean mayArchiveForum() {
            return !isGuest;
        }

        @Override
        public boolean mayFilterForUser() {
            return isAdm;
        }

        @Override
        public SubscriptionContext getSubscriptionContext() {
            return subsContext;
        }
    }, titleInfo);
    return forumController;
}
Also used : Translator(org.olat.core.gui.translator.Translator) TitleInfo(org.olat.core.gui.control.generic.title.TitleInfo) ForumCallback(org.olat.modules.fo.ForumCallback) SubscriptionContext(org.olat.core.commons.services.notifications.SubscriptionContext) WeeklyCalendarController(org.olat.commons.calendar.ui.WeeklyCalendarController) EPCreateMapController(org.olat.portfolio.ui.structel.EPCreateMapController) OpenMeetingsRunController(org.olat.modules.openmeetings.ui.OpenMeetingsRunController) ChatToolController(org.olat.instantMessaging.ui.ChatToolController) CourseLinkProviderController(org.olat.course.run.calendar.CourseLinkProviderController) BinderController(org.olat.modules.portfolio.ui.BinderController) FolderRunController(org.olat.core.commons.modules.bc.FolderRunController) ContactFormController(org.olat.modules.co.ContactFormController) Controller(org.olat.core.gui.control.Controller) CalendarController(org.olat.commons.calendar.ui.CalendarController) InfoGroupRunController(org.olat.group.ui.run.InfoGroupRunController) Forum(org.olat.modules.fo.Forum)

Aggregations

TitleInfo (org.olat.core.gui.control.generic.title.TitleInfo)6 TitledWrapperController (org.olat.core.gui.control.generic.title.TitledWrapperController)4 ArrayList (java.util.ArrayList)2 List (java.util.List)2 CalendarController (org.olat.commons.calendar.ui.CalendarController)2 WeeklyCalendarController (org.olat.commons.calendar.ui.WeeklyCalendarController)2 FolderRunController (org.olat.core.commons.modules.bc.FolderRunController)2 UserComment (org.olat.core.commons.services.commentAndRating.model.UserComment)2 SubscriptionContext (org.olat.core.commons.services.notifications.SubscriptionContext)2 Controller (org.olat.core.gui.control.Controller)2 CloseableModalController (org.olat.core.gui.control.generic.closablewrapper.CloseableModalController)2 Translator (org.olat.core.gui.translator.Translator)2 User (org.olat.core.id.User)2 CourseLinkProviderController (org.olat.course.run.calendar.CourseLinkProviderController)2 InfoGroupRunController (org.olat.group.ui.run.InfoGroupRunController)2 ChatToolController (org.olat.instantMessaging.ui.ChatToolController)2 ContactFormController (org.olat.modules.co.ContactFormController)2 Forum (org.olat.modules.fo.Forum)2 ForumCallback (org.olat.modules.fo.ForumCallback)2 OpenMeetingsRunController (org.olat.modules.openmeetings.ui.OpenMeetingsRunController)2