| Current Path : /home/megadansyp/www/administrator/components/com_eventgallery/tables/ |
| Current File : /home/megadansyp/www/administrator/components/com_eventgallery/tables/staticaddress.php |
<?php
/**
* @package Sven.Bluege
* @subpackage com_eventgallery
*
* @copyright Copyright (C) 2005 - 2019 Sven Bluege All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
class EventgalleryTableStaticaddress extends JTable
{
public $id;
public $firstname;
public $lastname;
public $companyname;
public $taxid;
public $address1;
public $address2;
public $address3;
public $city;
public $country;
public $state;
public $zip;
public $modified;
public $created;
/**
* Constructor
* @param JDatabaseDriver $db
*/
function __construct( &$db ) {
parent::__construct('#__eventgallery_staticaddress', 'id', $db);
}
}