| Current Path : /home/bateauecpx/www/administrator/components/com_j2store/views/product/tmpl/ |
| Current File : /home/bateauecpx/www/administrator/components/com_j2store/views/product/tmpl/form_pricing.php |
<?php
/**
* @package J2Store
* @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org
* @license GNU GPL v3 or later
*/
// No direct access
defined('_JEXEC') or die;
//pricing options
$pricing_calculator = J2Html::select()->clearState()
->type('genericlist')
->name($this->form_prefix.'[pricing_calculator]')
->value($this->variant->pricing_calculator)
->setPlaceHolders(J2Store::product()->getPricingCalculators())
->getHtml();
?>
<div class="j2store-product-pricing">
<div class="control-group">
<?php echo J2Html::label(JText::_('J2STORE_PRODUCT_REGULAR_PRICE'), 'price' ,array('class'=>'control-label')); ?>
<?php echo J2Html::price($this->form_prefix.'[price]', $this->variant->price, array('class'=>'input')); ?>
</div>
<div class="control-group">
<?php echo J2Html::label(JText::_('J2STORE_PRODUCT_SET_ADVANCED_PRICING'), 'sale_price',array('class'=>'control-label')); ?>
<!-- Link to advanced pricing options. Opens as a popup. -->
<?php echo J2StorePopup::popup( "index.php?option=com_j2store&view=products&task=setproductprice&variant_id=".$this->variant->j2store_variant_id."&layout=productpricing&tmpl=component", JText::_( "J2STORE_PRODUCT_SET_PRICES" ), array('class'=>'btn btn-success'));?>
</div>
<div class="control-group">
<?php echo J2Html::label(JText::_('J2STORE_PRODUCT_PRICING_CALCULATOR'), 'price_calculator',array('class'=>'control-label')); ?>
<?php //dropdown list: pre-populate it with Standard (to start with). We will extend this at a later point of time ?>
<?php echo $pricing_calculator;?>
</div>
</div>
<div class="alert alert-info">
<h4><?php echo JText::_('J2STORE_QUICK_HELP'); ?></h4>
<?php echo JText::_('J2STORE_PRODUCT_PRICE_HELP_TEXT'); ?>
</div>