| Current Path : /var/www/administrator/components/com_formmaker/tables/ |
| Current File : /var/www/administrator/components/com_formmaker/tables/formmaker_options.php |
<?php
/**
* @package Form Maker
* @author Web-Dorado
* @copyright (C) 2011 Web-Dorado. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die('Restricted access');
class Tableformmaker_options extends JTable
{
var $id = null;
var $public_key = null;
var $private_key = null;
var $map_key = null;
function __construct(&$db)
{
parent::__construct('#__formmaker_options','id',$db);
}
}
?>