Package org.olat.modules.sharedfolder

Examples of org.olat.modules.sharedfolder.SharedFolderDisplayController


   * @param wControl
   * @return Controller
   */
  public MainLayoutController getLaunchController(OLATResourceable res, String initialViewIdentifier, UserRequest ureq, WindowControl wControl) {
    VFSContainer sfContainer = SharedFolderManager.getInstance().getSharedFolder(res);
    SharedFolderDisplayController sfdCtr = new SharedFolderDisplayController(ureq, wControl, sfContainer, res, false);
    // use on column layout
    LayoutMain3ColsController layoutCtr = new LayoutMain3ColsController(ureq, wControl, null, null, sfdCtr.getInitialComponent(), null);
    layoutCtr.addDisposableChildController(sfdCtr); // dispose content on layout dispose
    return layoutCtr;
  }
View Full Code Here

TOP

Related Classes of org.olat.modules.sharedfolder.SharedFolderDisplayController

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.