git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
31 lines
596 B
PHP
31 lines
596 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');
|
|
|
|
// Include library dependencies
|
|
jimport('joomla.filter.input');
|
|
|
|
class TableSqlexcelsettings extends JTable
|
|
{
|
|
// #__sql2excel_workbooks
|
|
var $param = null;
|
|
var $value = null;
|
|
|
|
|
|
function __construct(& $db) {
|
|
parent::__construct('#__sql2excel_settings', 'param', $db);
|
|
}
|
|
|
|
function check()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
?>
|