0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: order_items.php.tar
home/academiac/www/administrator/components/com_virtuemart/tables/order_items.php 0000604 00000004742 15137215606 0024624 0 ustar 00 <?php /** * * Order item table * * @package VirtueMart * @subpackage Orders * @author RolandD * @link http://www.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: order_items.php 5339 2012-01-30 16:42:50Z alatak $ */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die('Restricted access'); if(!class_exists('VmTable'))require(JPATH_VM_ADMINISTRATOR.DS.'helpers'.DS.'vmtable.php'); /** * Order item table class * The class is is used to manage the order items in the shop. * * @package VirtueMart * @author RolandD */ class TableOrder_items extends VmTable { /** @var int Primary key */ var $virtuemart_order_item_id = 0; /** @var int User ID */ var $virtuemart_order_id = NULL; /** @var int Vendor ID */ var $virtuemart_vendor_id = NULL; /** @var int Product ID */ var $virtuemart_product_id = NULL; /** @var string Order item SKU */ var $order_item_sku = NULL; /** @var string Order item name */ var $order_item_name = NULL; /** @var int Product Quantity */ var $product_quantity = NULL; /** @var decimal Product item price */ var $product_item_price = 0.00000; /** @var decimal Product Base price with tax*/ var $product_basePriceWithTax = 0.00000; /** @var decimal Product discounted price without tax*/ var $product_discountedPriceWithoutTax = 0.00000; /** @var decimal Product final price without tax*/ var $product_priceWithoutTax = 0.00000; /** @var tax amount */ var $product_tax = 0.00000; /** @var decimal Product final price */ var $product_final_price = 0.00000; /** $product_discount_amount */ var $product_subtotal_discount = 0.00000; /** $product_discount_amount */ var $product_subtotal_with_tax = 0.00000; /** @var string Order item currency */ var $order_item_currency = NULL; /** @var char Order status */ var $order_status = NULL; /** @var text Product attribute */ var $product_attribute = NULL; /** * @param $db Class constructor; connect to the database */ function __construct($db) { parent::__construct('#__virtuemart_order_items', 'virtuemart_order_item_id', $db); $this->setLoggable(); } } // pure php no closing tag
©
2018.