Package org.olat.repository.portlet

Source Code of org.olat.repository.portlet.RepositoryPortlet

/**
* 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) 2009 by frentix GmbH, www.frentix.com
* <p>
*/

package org.olat.repository.portlet;

import java.util.Map;

import org.olat.core.gui.UserRequest;
import org.olat.core.gui.components.Component;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.control.generic.portal.AbstractPortlet;
import org.olat.core.gui.control.generic.portal.Portlet;
import org.olat.core.gui.control.generic.portal.PortletToolController;
import org.olat.core.gui.translator.Translator;
import org.olat.core.util.Util;

/**
* Description:<br>
* Displays the list of courses from this user
* <P>
* Initial Date: 08.07.2005 <br>
*
* @author gnaegi
* @author Roman Haag, roman.haag@frentix.com, www.frentix.com
*/
public class RepositoryPortlet extends AbstractPortlet {
  private RepositoryPortletRunController runCtr;
  private static final String CONFIG_KEY_ROLE = "role";
  private static final String CONFIG_KEY_ROLE_STUDENT = "student";
  private static final String CONFIG_KEY_ROLE_TEACHER = "teacher";
 
 
  /**
   * @see org.olat.gui.control.generic.portal.AbstractPortlet#createInstance(org.olat.core.gui.control.WindowControl,
   *      org.olat.core.gui.UserRequest, java.util.Map)
   */
  public Portlet createInstance(WindowControl wControl, UserRequest ureq, Map configuration) {
    Translator translator = Util.createPackageTranslator(RepositoryPortlet.class, ureq.getLocale());
    Portlet p = new RepositoryPortlet();
    p.setName(this.getName());
    p.setConfiguration(configuration);
    p.setTranslator(translator);
    return p;
  }

  /**
   * @see org.olat.gui.control.generic.portal.Portlet#getTitle()
   */
  public String getTitle() {
    if (CONFIG_KEY_ROLE_STUDENT.equals(getConfiguration().get(CONFIG_KEY_ROLE))) {
      return getTranslator().translate("repositoryPortlet.student.title");     
    } else {     
      return getTranslator().translate("repositoryPortlet.teacher.title");     
    }
  }

  /**
   * @see org.olat.gui.control.generic.portal.Portlet#getDescription()
   */
  public String getDescription() {
    if (CONFIG_KEY_ROLE_STUDENT.equals(getConfiguration().get(CONFIG_KEY_ROLE))) {
      return getTranslator().translate("repositoryPortlet.student.description");     
    } else {     
      return getTranslator().translate("repositoryPortlet.teacher.description");     
    }
  }

  /**
   * @see org.olat.gui.control.generic.portal.Portlet#getInitialRunComponent(org.olat.core.gui.control.WindowControl,
   *      org.olat.core.gui.UserRequest)
   */
  public Component getInitialRunComponent(WindowControl wControl, UserRequest ureq) {
    if(this.runCtr != null) runCtr.dispose();
    boolean studentView = CONFIG_KEY_ROLE_STUDENT.equals(getConfiguration().get(CONFIG_KEY_ROLE));
    this.runCtr = new RepositoryPortletRunController(wControl, ureq, getTranslator(), this.getName(), studentView);
    return this.runCtr.getInitialComponent();
  }

  /**
   * @see org.olat.core.gui.control.Disposable#dispose(boolean)
   */
  public void dispose() {
    disposeRunComponent();
  }

  /**
   * @see org.olat.gui.control.generic.portal.Portlet#getCssClass()
   */
  public String getCssClass() {
    if (CONFIG_KEY_ROLE_STUDENT.equals(getConfiguration().get(CONFIG_KEY_ROLE))) {
      return "o_portlet_repository_student";           
    } else {
      return "o_portlet_repository_teacher";     
    }
  }

  /**
   * @see org.olat.gui.control.generic.portal.Portlet#disposeRunComponent(boolean)
   */
  public void disposeRunComponent() {
    if (this.runCtr != null) {
      this.runCtr.dispose();
      this.runCtr = null;
    }
  }
 
  public PortletToolController getTools(UserRequest ureq, WindowControl wControl) {
    //portlet was not yet visible
    if ( runCtr == null ) {
      boolean studentView = CONFIG_KEY_ROLE_STUDENT.equals(getConfiguration().get(CONFIG_KEY_ROLE));
      this.runCtr = new RepositoryPortletRunController(wControl, ureq, getTranslator(), this.getName(), studentView);
    }
    return runCtr.createSortingTool(ureq, wControl);
  }
}
TOP

Related Classes of org.olat.repository.portlet.RepositoryPortlet

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.