Package org.olat.modules.sharedfolder

Examples of org.olat.modules.sharedfolder.SharedFolderEditorController


  /**
   * @see org.olat.repository.handlers.RepositoryHandler#getEditorController(org.olat.core.id.OLATResourceable
   *      org.olat.core.gui.UserRequest, org.olat.core.gui.control.WindowControl)
   */
  public Controller getEditorController(OLATResourceable res, UserRequest ureq, WindowControl wControl) {
    Controller sharedFolderCtr = new SharedFolderEditorController(res, ureq, wControl);
    // use on column layout
    LayoutMain3ColsController layoutCtr = new LayoutMain3ColsController(ureq, wControl, null, null, sharedFolderCtr.getInitialComponent(), null);
    layoutCtr.addDisposableChildController(sharedFolderCtr); // dispose content on layout dispose
    return layoutCtr;
  }
View Full Code Here

TOP

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

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.