Examples of WaitingGroupController


Examples of org.olat.admin.securitygroup.gui.WaitingGroupController

   
    // Show waiting list only if enabled
    if (hasWaitingList) {
      // waitinglist-groupcontroller which allows to remove all members
      SecurityGroup waitingList = currBusinessGroup.getWaitingGroup();
      waitingGruppeController = new WaitingGroupController(ureq, getWindowControl(), true, false, enableTablePreferences, waitingList );
      listenTo(waitingGruppeController);

      // add mail templates used when adding and removing users
      MailTemplate waitAddUserMailTempl = BGMailHelper.createAddWaitinglistMailTemplate(currBusinessGroup, ureq.getIdentity());
      waitingGruppeController.setAddUserMailTempl(waitAddUserMailTempl);
View Full Code Here

Examples of org.olat.admin.securitygroup.gui.WaitingGroupController

    MailTemplate partRemoveUserMailTempl = ProjectBrokerManagerFactory.getProjectBrokerEmailer().createRemoveParticipantMailTemplate(project, ureq.getIdentity(), this.getTranslator());
    projectMemberController.setRemoveUserMailTempl(partRemoveUserMailTempl);

    // Project Candidates Management
    if (projectBrokerModuleConfiguration.isAcceptSelectionManually()) {
      projectCandidatesController = new WaitingGroupController(ureq, getWindowControl(), true, false, true, project.getCandidateGroup());
      listenTo(projectCandidatesController);
      myContent.put("projectCandidatesController", projectCandidatesController.getInitialComponent());
      // add mail templates used when adding and removing users
      MailTemplate waitAddUserMailTempl = ProjectBrokerManagerFactory.getProjectBrokerEmailer().createAddCandidateMailTemplate(project, ureq.getIdentity(), this.getTranslator());
      projectCandidatesController.setAddUserMailTempl(waitAddUserMailTempl);
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.