git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
24 lines
456 B
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();
|
|
}
|
|
} |