Package org.olat.gui.control

Source Code of org.olat.gui.control.OlatGuestTopNavController

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS,
* <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Copyright (c) since 2004 at Multimedia- & E-Learning Services (MELS),<br>
* University of Zurich, Switzerland.
* <p>
*/

package org.olat.gui.control;

import org.olat.basesecurity.AuthHelper;
import org.olat.core.commons.fullWebApp.popup.BaseFullWebappPopupLayoutFactory;
import org.olat.core.commons.services.search.ui.SearchController;
import org.olat.core.commons.services.search.ui.SearchServiceUIFactory;
import org.olat.core.commons.services.search.ui.SearchServiceUIFactory.DisplayOption;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.components.Component;
import org.olat.core.gui.components.link.Link;
import org.olat.core.gui.components.link.LinkFactory;
import org.olat.core.gui.components.velocity.VelocityContainer;
import org.olat.core.gui.control.Controller;
import org.olat.core.gui.control.Event;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.control.controller.BasicController;
import org.olat.core.gui.control.creator.ControllerCreator;
import org.olat.core.gui.control.generic.popup.PopupBrowserWindow;
import org.olat.core.service.ServiceFactory;
import org.olat.course.CourseFactory;

/**
* Description:<br>
* TODO: patrickb Class Description for OlatUpperRightCorner
* <P>
* Initial Date: 13.06.2006 <br>
*
* @author patrickb
*/
public class OlatGuestTopNavController extends BasicController {
  private VelocityContainer topNavVC;
  private Link helpLink;
  private Link loginLink;
  private SearchController searchC;

  public OlatGuestTopNavController(UserRequest ureq, WindowControl wControl) {
    super(ureq, wControl);
    topNavVC = createVelocityContainer("guesttopnav");

    SearchServiceUIFactory searchUIFactory = (SearchServiceUIFactory)ServiceFactory.getService(SearchServiceUIFactory.class);
    searchC = searchUIFactory.createInputController(ureq, wControl, DisplayOption.STANDARD, null);
    searchC.setResourceContextEnable(false);
    topNavVC.put("search_input", searchC.getInitialComponent());
   
    // the help link
    helpLink = LinkFactory.createLink("topnav.help", topNavVC, this);
    helpLink.setTooltip("topnav.help.alt", false);
    helpLink.setTarget("_help");
    loginLink = LinkFactory.createLink("topnav.login", topNavVC, this);
    loginLink.setTooltip("topnav.login.alt", false);

    //
    putInitialPanel(topNavVC);
  }

  @Override
  public void event(UserRequest ureq, Controller source, Event event) {
    //
  }

  public void event(UserRequest ureq, Component source, Event event) {
    if (source == loginLink) {
      AuthHelper.doLogout(ureq);
    }else if (source == helpLink) {
      ControllerCreator ctrlCreator = new ControllerCreator() {
        public Controller createController(UserRequest lureq, WindowControl lwControl) {
          return CourseFactory.createHelpCourseLaunchController(lureq, lwControl);
        }         
      };
      //wrap the content controller into a full header layout
      ControllerCreator layoutCtrlr = BaseFullWebappPopupLayoutFactory.createAuthMinimalPopupLayout(ureq, ctrlCreator);
      //open in new browser window
      PopupBrowserWindow pbw = getWindowControl().getWindowBackOffice().getWindowManager().createNewPopupBrowserWindowFor(ureq, layoutCtrlr);
      pbw.open(ureq);
      //
    }
  }

  protected void doDispose() {
    // controllers disposed by BasicController:
  }

}
TOP

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

TOP
Copyright © 2018 www.massapi.com. 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.