Package org.olat.core.gui.components.tree

Examples of org.olat.core.gui.components.tree.GenericTreeNode.addChild()


     
      gtnChild = new GenericTreeNode();   
      gtnChild.setTitle(translator.translate("menu.coauthors"));
      gtnChild.setUserObject("coauthors");
      gtnChild.setAltText(translator.translate("menu.coauthors.alt"));
      gtn3.addChild(gtnChild);

      gtnChild = new GenericTreeNode();   
      gtnChild.setTitle(translator.translate("menu.resourceowners"));
      gtnChild.setUserObject("resourceowners");
      gtnChild.setAltText(translator.translate("menu.resourceowners.alt"));
View Full Code Here


      gtnChild = new GenericTreeNode();   
      gtnChild.setTitle(translator.translate("menu.resourceowners"));
      gtnChild.setUserObject("resourceowners");
      gtnChild.setAltText(translator.translate("menu.resourceowners.alt"));
      gtn3.addChild(gtnChild);
    }

    Boolean canGroupmanagers = (Boolean) configuration.get(BaseSecurityModule.CONFIG_USERMANAGER_CAN_MANAGE_GROUPMANAGERS);
    if (canGroupmanagers.booleanValue() || isOlatAdmin) {
      gtnChild = new GenericTreeNode();   
View Full Code Here

    if (canGroupmanagers.booleanValue() || isOlatAdmin) {
      gtnChild = new GenericTreeNode();   
      gtnChild.setTitle(translator.translate("menu.groupmanagergroup"));
      gtnChild.setUserObject("groupmanagergroup");
      gtnChild.setAltText(translator.translate("menu.groupmanagergroup.alt"));
      gtn3.addChild(gtnChild);   
    }

    // admin group and user manager group always restricted to admins
    if (isOlatAdmin) {
      gtnChild = new GenericTreeNode();   
View Full Code Here

    if (isOlatAdmin) {
      gtnChild = new GenericTreeNode();   
      gtnChild.setTitle(translator.translate("menu.usermanagergroup"));
      gtnChild.setUserObject("usermanagergroup");
      gtnChild.setAltText(translator.translate("menu.usermanagergroup.alt"));
      gtn3.addChild(gtnChild);

      gtnChild = new GenericTreeNode();   
      gtnChild.setTitle(translator.translate("menu.admingroup"));
      gtnChild.setUserObject("admingroup");
      gtnChild.setAltText(translator.translate("menu.admingroup.alt"));
View Full Code Here

      gtnChild = new GenericTreeNode();   
      gtnChild.setTitle(translator.translate("menu.admingroup"));
      gtnChild.setUserObject("admingroup");
      gtnChild.setAltText(translator.translate("menu.admingroup.alt"));
      gtn3.addChild(gtnChild);
    }

    Boolean canGuests = (Boolean) configuration.get(BaseSecurityModule.CONFIG_USERMANAGER_CAN_MANAGE_GUESTS);
    if (canGuests.booleanValue() || isOlatAdmin) {
      gtnChild = new GenericTreeNode();   
View Full Code Here

    if (canGuests.booleanValue() || isOlatAdmin) {
      gtnChild = new GenericTreeNode();   
      gtnChild.setTitle(translator.translate("menu.anonymousgroup"));
      gtnChild.setUserObject("anonymousgroup");
      gtnChild.setAltText(translator.translate("menu.anonymousgroup.alt"));
      gtn3.addChild(gtnChild);
    }
   
    gtnChild = new GenericTreeNode();   
    gtnChild.setTitle(translator.translate("menu.noauthentication"));
    gtnChild.setUserObject("noauthentication");
View Full Code Here

   
    gtnChild = new GenericTreeNode();   
    gtnChild.setTitle(translator.translate("menu.noauthentication"));
    gtnChild.setUserObject("noauthentication");
    gtnChild.setAltText(translator.translate("menu.noauthentication.alt"));
    gtn3.addChild(gtnChild);

    gtnChild = new GenericTreeNode();   
    gtnChild.setTitle(translator.translate("menu.logondeniedgroup"));
    gtnChild.setUserObject("logondeniedgroup");
    gtnChild.setAltText(translator.translate("menu.logondeniedgroup.alt"));
View Full Code Here

    gtnChild = new GenericTreeNode();   
    gtnChild.setTitle(translator.translate("menu.logondeniedgroup"));
    gtnChild.setUserObject("logondeniedgroup");
    gtnChild.setAltText(translator.translate("menu.logondeniedgroup.alt"));
    gtn3.addChild(gtnChild);

    gtnChild = new GenericTreeNode();   
    gtnChild.setTitle(translator.translate("menu.deletedusers"));
    gtnChild.setUserObject("deletedusers");
    gtnChild.setAltText(translator.translate("menu.deletedusers.alt"));
View Full Code Here

    gtnChild = new GenericTreeNode();   
    gtnChild.setTitle(translator.translate("menu.deletedusers"));
    gtnChild.setUserObject("deletedusers");
    gtnChild.setAltText(translator.translate("menu.deletedusers.alt"));
    gtn3.addChild(gtnChild);
   
    // END submenu access and rights

    // START other queries
    gtn3 = new GenericTreeNode();   
View Full Code Here

   
    gtnChild = new GenericTreeNode();   
    gtnChild.setTitle(translator.translate("menu.created.lastweek"));
    gtnChild.setUserObject("created.lastweek");
    gtnChild.setAltText(translator.translate("menu.created.lastweek.alt"));
    gtn3.addChild(gtnChild);

    gtnChild = new GenericTreeNode();   
    gtnChild.setTitle(translator.translate("menu.created.lastmonth"));
    gtnChild.setUserObject("created.lastmonth");
    gtnChild.setAltText(translator.translate("menu.created.lastmonth.alt"));
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.