| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/administrator/components/com_virtuemart/tables/ |
Upload File : |
<?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 10691 2022-08-30 12:14:18Z 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->setDateFields(array('coupon_start_date','coupon_expiry_date'));
$this->setLoggable();
$this->setLockable();
}
}
// pure php no closing tag