%PDF- %PDF-
| Direktori : /home/lightco1/upgrade.lightco.com.au/administrator/components/com_csvi/ |
| Current File : /home/lightco1/upgrade.lightco.com.au/administrator/components/com_csvi/controller.php |
<?php
/**
* @package CSVI
* @subpackage Administrator
*
* @author Roland Dalmulder <contact@csvimproved.com>
* @copyright Copyright (C) 2006 - 2016 RolandD Cyber Produksi. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
* @link http://www.csvimproved.com
*/
defined('_JEXEC') or die;
/**
* Base controller.
*
* @package CSVI
* @subpackage Administrator
*
* @since 6.0
*/
class CsviController extends JControllerLegacy
{
/**
* Typical view method for MVC based architecture
*
* This function is provide as a default implementation, in most cases
* you will need to override it in your own controllers.
*
* @param boolean $cachable If true, the view output will be cached
* @param array $urlparams An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
*
* @return JControllerLegacy A JControllerLegacy object to support chaining.
*
* @since 12.2
*/
public function display($cachable = false, $urlparams = array())
{
parent::display($cachable, $urlparams);
return $this;
}
}