%PDF- %PDF-
Direktori : /home/lightco1/luminero.com.au/administrator/components/com_virtuemart/tables/ |
Current File : /home/lightco1/luminero.com.au/administrator/components/com_virtuemart/tables/paymentmethods.php |
<?php /** * * Calc table ( for calculations) * * @package VirtueMart * @subpackage Payment Methods * @author Max Milbers * @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: paymentmethods.php 9413 2017-01-04 17:20:58Z Milbo $ */ defined('_JEXEC') or die(); if (!class_exists('VmTable')) require(VMPATH_ADMIN . DS . 'helpers' . DS . 'vmtable.php'); /** * Calculator table class * The class is is used to manage the calculation in the shop. * * @author Max Milbers * @package VirtueMart */ class TablePaymentmethods extends VmTable { /** @var int Primary key */ var $virtuemart_paymentmethod_id = 0; /** @var string VendorID of the payment_method creator */ var $virtuemart_vendor_id = 0; /** @var id for the used plugin */ var $payment_jplugin_id = 0; /** @var string Paymentmethod name */ var $payment_name = ''; /** @var string Element of paymentmethod */ /** @var string payment description */ var $payment_desc = ''; var $slug; var $payment_element = ''; /** @var string parameter of the paymentmethod */ var $payment_params = 0; var $currency_id = 0; /** @var string ordering */ var $ordering = ''; /** @var for all Vendors? */ var $shared = 0; ////this must be forbidden to set for normal vendors, that means only setable Administrator permissions or vendorId=1 /** @var int published or unpublished */ var $published = 0; /** * @author Max Milbers * @param JDataBase $db */ function __construct(&$db) { parent::__construct('#__virtuemart_paymentmethods', 'virtuemart_paymentmethod_id', $db); $this->setObligatoryKeys('payment_jplugin_id'); $this->setObligatoryKeys('payment_name'); $this->setLoggable(); $this->setTranslatable(array('payment_name', 'payment_desc')); $this->setSlug('payment_name'); $this->setTableShortCut('paym'); // $this->setUniqueName('ordering'); } } // pure php no closing tag