| Current Path : /home/smartconb/www/armencom33/administrator/components/com_eventgallery/src/Table/ |
| Current File : /home/smartconb/www/armencom33/administrator/components/com_eventgallery/src/Table/StateTable.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
*/
namespace Svenbluege\Component\Eventgallery\Administrator\Table;
use Joomla\CMS\Table\Table;
use Joomla\Database\DatabaseDriver;
defined('_JEXEC') or die('Restricted access');
class StateTable extends Table
{
public $id;
public $countrycode;
public $statecode;
public $statename;
public $language;
public $published;
public $ordering;
public $modified;
public $created;
/**
* Constructor
* @param DatabaseDriver $db
*/
function __construct( &$db ) {
parent::__construct('#__eventgallery_state', 'id', $db);
}
}