/** * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * <p> * Licensed under the Apache License, Version 2.0 (the "License"); <br> * you may not use this file except in compliance with the License.<br> * You may obtain a copy of the License at the * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> * <p> * Unless required by applicable law or agreed to in writing,<br> * software distributed under the License is distributed on an "AS IS" BASIS, <br> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br> * See the License for the specific language governing permissions and <br> * limitations under the License. * <p> * Initial code contributed and copyrighted by<br> * frentix GmbH, http://www.frentix.com * <p> */ package org.olat.group.ui.edit; import org.olat.core.CoreSpringFactory; import org.olat.core.gui.UserRequest; import org.olat.core.gui.components.form.flexible.FormItemContainer; import org.olat.core.gui.components.form.flexible.impl.FormBasicController; import org.olat.core.gui.components.form.flexible.impl.FormLayoutContainer; import org.olat.core.gui.control.Controller; import org.olat.core.gui.control.Event; import org.olat.core.gui.control.WindowControl; import org.olat.core.util.Util; import org.olat.group.BusinessGroup; import org.olat.group.BusinessGroupManagedFlag; import org.olat.resource.OLATResource; import org.olat.resource.accesscontrol.AccessControlModule; import org.olat.resource.accesscontrol.ui.AccessConfigurationController; /** * * Description:<br> * Add a check box to the standard access control controller * * <P> * Initial Date: 26 avr. 2011 <br> * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com */ public class BusinessGroupEditAccessController extends FormBasicController { private final boolean managed; private AccessConfigurationController configController; public BusinessGroupEditAccessController(UserRequest ureq, WindowControl wControl, BusinessGroup businessGroup) { super(ureq, wControl, LAYOUT_VERTICAL); setTranslator(Util.createPackageTranslator(AccessConfigurationController.class, getLocale(), getTranslator())); managed = BusinessGroupManagedFlag.isManaged(businessGroup, BusinessGroupManagedFlag.bookings); AccessControlModule acModule = CoreSpringFactory.getImpl(AccessControlModule.class); if(acModule.isEnabled()) { OLATResource resource = businessGroup.getResource(); boolean waitingList = businessGroup.getWaitingListEnabled(); configController = new AccessConfigurationController(ureq, wControl, resource, businessGroup.getName(), !waitingList, !managed, mainForm); listenTo(configController); } initForm(ureq); } public int getNumOfBookingConfigurations() { return configController == null ? 0 : configController.getNumOfBookingConfigurations(); } @Override protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) { setFormTitle("accesscontrol.title"); setFormDescription("accesscontrol_group.desc"); setFormContextHelp("Group Administration#gruppensystem_buchung_ag"); if(configController != null) { formLayout.add(configController.getInitialFormItem()); } if(configController != null && !managed) { uifactory.addSpacerElement("spacer1", formLayout, false); } if(!managed) { final FormLayoutContainer buttonGroupLayout = FormLayoutContainer.createButtonLayout("buttonLayout", getTranslator()); buttonGroupLayout.setRootForm(mainForm); formLayout.add(buttonGroupLayout); uifactory.addFormSubmitButton("save", formLayout); } } public void updateBusinessGroup(BusinessGroup businessGroup) { boolean waitingList = businessGroup.getWaitingListEnabled(); configController.setAllowPaymentMethod(!waitingList); } public boolean isPaymentMethodInUse() { return configController.isPaymentMethodInUse(); } @Override protected void doDispose() { // } @Override protected void formOK(UserRequest ureq) { if(configController != null) { configController.formOK(ureq); } fireEvent(ureq, Event.DONE_EVENT); } @Override protected void event(UserRequest ureq, Controller source, Event event) { if(source == configController) { fireEvent(ureq, event); } super.event(ureq, source, event); } }