Package org.olat.core.gui.control.generic.tool

Examples of org.olat.core.gui.control.generic.tool.ToolController.addComponent()


    myTool.addHeader(translate("header.tools.general"));
    if (cc.isCalendarEnabled()) {
      myTool.addPopUpLink(ACTION_CALENDAR, translate("command.calendar"), null, null, "950", "750", false);
    }
    if (cc.hasGlossary()) {
      myTool.addComponent(glossaryToolCtr.getInitialComponent());
    }
    if (showCourseConfigLink) {
      myTool.addLink(TOOLBOX_LINK_COURSECONFIG, translate("command.courseconfig"));
    }
    myTool.addPopUpLink("personalnote", translate("command.personalnote"), null, null, "750", "550", false);
View Full Code Here


      // we add the course chat link controller to the toolbox
      if (courseChatManagerCtr == null && ureq != null) createCourseGroupChatLink(ureq);
      if (courseChatManagerCtr != null){
        Controller groupChatController = courseChatManagerCtr.getGroupChatController(course);
        if(groupChatController !=null){
          myTool.addComponent(groupChatController.getInitialComponent());
          addCurrentUserCount(myTool);
        }
      }
    } else {
      addCurrentUserCount(myTool);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.