FundacionLQDVI_WebCongresos/www/components/com_sql2excel/controller.php

24 lines
456 B
PHP

<?php
/*
* @component SQL 2 Excel Component
* @copyright Copyright (C) Joomla-R-Us, joomla-r-us.com
* @license http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3
*/
// No direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
jimport('joomla.application.component.controller');
class Sql2excelController extends JController
{
/**
* Method to display the view
*
* @access public
*/
function display()
{
parent::display();
}
}