File: /home/confeduphaar/backip-old-files/administrator/components/com_virtuemart/tables/coupons.php
<?php
/**
*
* Coupon table
*
* @package VirtueMart
* @subpackage Coupon
* @author RickG
* @link https://virtuemart.net
* @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* VirtueMart is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @version $Id: coupons.php 10290 2020-04-07 10:20:41Z Milbo $
*/
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
/**
* Coupon table class
* The class is is used to manage the coupons in the shop.
*
* @package VirtueMart
* @author RickG
*/
class TableCoupons extends VmTable {
/** @var int Primary key */
var $virtuemart_coupon_id = 0;
var $virtuemart_vendor_id = 0;
/** @var varchar Coupon name */
var $coupon_code = '';
/** @var string Coupon percentage or total */
var $percent_or_total = 'percent';
/** @var string Coupon type */
var $coupon_type = 'gift';
/** @var Decimal Coupon value */
var $coupon_value = '';
/** @var datetime Coupon start date */
var $coupon_start_date = '';
/** @var datetime Coupon expiry date */
var $coupon_expiry_date = '';
/** @var decimal Coupon valid value */
var $coupon_value_valid = 0;
/** @var decimal Coupon max value */
var $coupon_value_max = 0;
var $virtuemart_coupon_max_attempt_per_user = 0;
var $virtuemart_shoppergroup_ids = '';
var $virtuemart_shopper_ids = '';
var $virtuemart_product_ids = '';
var $virtuemart_category_ids = '';
/** @var decimal Coupon valid value */
var $coupon_used = 0;
var $published = 0;
/**
* @author RickG, Max Milbers
* @param JDataBase $db
*/
function __construct(&$db)
{
parent::__construct('#__virtuemart_coupons', 'virtuemart_coupon_id', $db);
$this->setObligatoryKeys('coupon_code');
$this->setLoggable();
}
}
// pure php no closing tag