0byt3m1n1-V2
Path:
/
home
/
academiac
/
www
/
administrator
/
components
/
com_csvi
/
tables
/
com_virtuemart
/
[
Home
]
File: coupons.php
<?php /** * Virtuemart Coupons table * * @package CSVI * @author Roland Dalmulder * @link http://www.csvimproved.com * @copyright Copyright (C) 2006 - 2013 RolandD Cyber Produksi. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html * @version $Id: coupons.php 2275 2013-01-03 21:08:43Z RolandD $ */ // No direct access defined('_JEXEC') or die('Restricted access'); /** * @package CSVI */ class TableCoupons extends JTable { /** * Table constructor * * @copyright * @author RolandD * @todo * @see * @access public * @param * @return * @since 4.0 */ public function __construct($db) { parent::__construct('#__virtuemart_coupons', 'virtuemart_coupon_id', $db ); } /** * Check if a coupon already exists * * @copyright * @author RolandD * @todo * @see * @access public * @param * @return * @since 3.0 */ public function check() { if (isset($this->virtuemart_coupon_id)) return true; else { $jinput = JFactory::getApplication()->input; $csvilog = $jinput->get('csvilog', null, null); $db = JFactory::getDbo(); $query = $db->getQuery(true); $query->select($this->_tbl_key); $query->from($this->_tbl); $query->where('coupon_code ='.$db->Quote($this->coupon_code)); $db->setQuery($query); $csvilog->addDebug(JText::_('COM_CSVI_CHECK_COUPON_CODE_EXISTS'), true); $db->query(); if ($db->getAffectedRows() > 0) { $this->virtuemart_coupon_id = $db->loadResult(); } } } /** * Reset the keys including primary key * * @copyright * @author RolandD * @todo * @see * @access public * @param * @return * @since 4.0 */ public function reset() { // Get the default values for the class from the table. foreach ($this->getFields() as $k => $v) { // If the property is not private, reset it. if (strpos($k, '_') !== 0) { $this->$k = NULL; } } } } ?>
©
2018.