| Current Path : /home/megadansyp/www/administrator/components/com_eventgallery/tables/ |
| Current File : /home/megadansyp/www/administrator/components/com_eventgallery/tables/orderstatus.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 EventgalleryTableOrderstatus extends JTable
{
public $id;
public $name;
public $default;
public $systemmanaged;
public $type;
public $ordering;
public $displayname;
public $description;
public $modified;
public $created;
/**
* Constructor
* @param JDatabaseDriver $db
*/
function __construct( &$db ) {
parent::__construct('#__eventgallery_orderstatus', 'id', $db);
}
}