<?php
/**
 *
 * @author 		SDIC SA
 * @package 	Sitemap
 * @version 	2.0
 * @copyright	Copyright (C) 2015 SDIC SA
 * @license		GNU GPLv2
 * @link     	https://www.sdic.ch
 *
 */
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
 
// import Joomla controller library
jimport('joomla.application.component.controller');

/**
 * Site Map Component Controller
 */
class SiteMapController extends JControllerLegacy{

 	/**
     * Method to display the view
     *
     * @access    public
     */
    function display( $cachable = false, $urlparams = false ) {
    	// Display the view
    	parent::display( $cachable, $urlparams );
    }
}
