PATH:
home
/
sparklp6
/
public_html
/
sparklerfilters-org
/
components
/
com_j2store
/
views
/
myprofile
/
tmpl
<?php /** * @package J2Store * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later * This file is for email. */ // No direct access to this file defined ( '_JEXEC' ) or die (); $order = $this->order; $items = $this->order->getItems(); $currency = J2Store::currency(); $this->taxes = $order->getOrderTaxrates(); $colspan = '2'; ?> <style type="text/css"> .emailtemplate-table { border-collapse: collapse; } .emailtemplate-table td { font-family: "Arial"; line-height: 1.35em; padding: 7px 9px 9px; border: 1px solid #ccc; } .emailtemplate-table th { padding: 5px 9px 6px; border: 1px solid #ccc; line-height: 1.35em; } .emailtemplate-table td.cart-line-quantity { text-align: center; } .emailtemplate-table-footer td { text-align: right; } .emailtemplate-table-footer th.totals-heading { text-align: right; } </style> <div style="page-break-inside: avoid;"> <h3><?php echo JText::_('J2STORE_ORDER_SUMMARY')?></h3> <table class="emailtemplate-table table table-bordered" width="100%" border="0" cellspacing="0" cellpadding="0"> <thead> <tr> <th><?php echo JText::_('J2STORE_CART_LINE_ITEM'); ?></th> <th><?php echo JText::_('J2STORE_CART_LINE_ITEM_QUANTITY'); ?></th> <?php if(isset($this->taxes) && count($this->taxes) && $this->params->get('show_item_tax', 0)): ?> <?php $colspan = '3'; ?> <th><?php echo JText::_('J2STORE_CART_LINE_ITEM_TAX'); ?></th> <?php endif; ?> <th><?php echo JText::_('J2STORE_CART_LINE_ITEM_TOTAL'); ?></th> </tr> </thead> <tbody> <?php foreach ($items as $item): ?> <?php $registry = new JRegistry; $registry->loadString($item->orderitem_params); $item->params = $registry; $thumb_image = $item->params->get('thumb_image', ''); ?> <tr valign="top"> <td> <?php if($this->params->get('show_thumb_email', 0) && !empty($thumb_image)): ?> <span class="cart-thumb-image"> <?php if(JFile::exists(JPATH_SITE.'/'.$thumb_image)): ?> <img src="<?php echo JUri::root(true). '/'.$thumb_image; ?>" > <?php endif;?> </span> <?php endif; ?> <?php echo $this->order->get_formatted_lineitem_name($item);?> <?php if($this->params->get('show_price_field', 1)): ?> <span class="cart-product-unit-price"> <span class="cart-item-title"><?php echo JText::_('J2STORE_CART_LINE_ITEM_UNIT_PRICE'); ?></span> <span class="cart-item-value"> <?php echo $currency->format($this->order->get_formatted_order_lineitem_price($item, $this->params->get('checkout_price_display_options', 1)), $this->order->currency_code, $this->order->currency_value);?> </span> </span> <?php endif; ?> <?php if($this->params->get('show_sku', 1) && !empty($item->orderitem_sku)): ?> <br /> <span class="cart-product-sku"> <span class="cart-item-title"><?php echo JText::_('J2STORE_CART_LINE_ITEM_SKU'); ?></span> <span class="cart-item-value"><?php echo $item->orderitem_sku; ?></span> </span> <?php endif; ?> <?php echo J2Store::plugin()->eventWithHtml('AfterDisplayLineItemTitleInOrder', array($item, $this->order, $this->params));?> </td> <td class="cart-line-quantity"><?php echo $item->orderitem_quantity; ?></td> <?php if(isset($this->taxes) && count($this->taxes) && $this->params->get('show_item_tax', 0)): ?> <td><?php echo $currency->format($item->orderitem_tax); ?></td> <?php endif; ?> <td class="cart-line-subtotal" style="text-align: right;"> <?php echo $currency->format($this->order->get_formatted_lineitem_total($item, $this->params->get('checkout_price_display_options', 1)), $this->order->currency_code, $this->order->currency_value ); ?> </td> </tr> <?php endforeach; ?> </tbody> <tfoot class="emailtemplate-table-footer" style="text-align: right;"> <?php if($totals = $this->order->get_formatted_order_totals()): ?> <?php foreach($totals as $total): ?> <tr valign="top"> <th class="totals-heading" scope="row" colspan="<?php echo $colspan; ?>"> <?php echo $total['label']; ?></th> <td><?php echo $total['value']; ?></td> </tr> <?php endforeach; ?> <?php endif; ?> </tfoot> </table> </div>
[-] default_addresses.php
[edit]
[-] ordersummary.php
[edit]
[-] default_downloads.php
[edit]
[-] default_orders.php
[edit]
[-] index.html
[edit]
[-] address.php
[edit]
[-] default.php
[edit]
[-] default.xml
[edit]
[-] orderitems.php
[edit]
[-] default_login.php
[edit]
[-] reorder.php
[edit]
[-] view.php
[edit]
[+]
..