Package org.olat.gui.control

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


    // ----------- 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

Related Classes of org.olat.gui.control.OlatGuestFooterController

Copyright © 2018 www.massapicom. 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.