Package org.olat.catalog.ui

Examples of org.olat.catalog.ui.CatalogController

The catalog is based upon the idea of having a lot of resources which must somehow be ordered to find them quickly. Frankly speaking the catalog only makes sense if no access restrictions to the linked resources apply. This in mind, it is solely possible to link resources which are accessible for the users of the installation. Date: 2005/10/14 12:35:40
@author Felix Jost

    // create new catalog controller with given node if none exists
    // create also new catalog controller when the user clicked twice on the
    // catalog link in the menu
    if (catalogCntrllr == null || lastUserObject.equals("search.catalog")) {
      removeAsListenerAndDispose(catalogCntrllr);
      catalogCntrllr = new CatalogController(ureq, getWindowControl(), nodeId);
      listenTo(catalogCntrllr);
    } else {
      // just activate the existing catalog
      if (nodeId != null) {
        catalogCntrllr.activate(ureq, nodeId);
View Full Code Here

TOP

Related Classes of org.olat.catalog.ui.CatalogController

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.