/**
* @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;
}