Examples of OlatGuestFooterController


Examples of org.olat.gui.control.OlatGuestFooterController

    // ----------- footer, optional (e.g. for copyright, powered by) ------------------
    if (CoreSpringFactory.containsBean("fullWebApp.GuestFooterControllerCreator")) {
      ControllerCreator footerCreator = (ControllerCreator) CoreSpringFactory.getBean("fullWebApp.GuestFooterControllerCreator");
      footerCtr = footerCreator.createController(ureq, wControl);
    } else {
      footerCtr = new OlatGuestFooterController(ureq,wControl);
    }
    return footerCtr;
  }
View Full Code Here

Examples of org.olat.gui.control.OlatGuestFooterController

    // ----------- footer, optional (e.g. for copyright, powered by) ------------------
    if (CoreSpringFactory.containsBean("fullWebApp.DMZFooterControllerCreator")) {
      ControllerCreator footerCreator = (ControllerCreator) CoreSpringFactory.getBean("fullWebApp.DMZFooterControllerCreator");
      footerCtr = footerCreator.createController(ureq, wControl);
    } else {
      footerCtr = new OlatGuestFooterController(ureq,wControl);
    }
    return footerCtr;
  }
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.