FundacionLQDVI_WebCongresos/www/administrator/components/com_sql2excel/tables/sqlexcelsettings.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;
}
}
?>