Your IP : 216.73.216.219


Current Path : /home/pteabiscqq/www/administrator/components/com_k2/controllers/
Upload File :
Current File : /home/pteabiscqq/www/administrator/components/com_k2/controllers/info.php

<?php
/**
 * @version    2.11 (rolling release)
 * @package    K2
 * @author     JoomlaWorks https://www.joomlaworks.net
 * @copyright  Copyright (c) 2009 - 2024 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL: https://gnu.org/licenses/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

jimport('joomla.application.component.controller');

class K2ControllerInfo extends K2Controller
{
    public function display($cachable = false, $urlparams = array())
    {
        JRequest::setVar('view', 'info');
        parent::display();
    }
}