Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/j3/components/com_hikashop/views/checkout/tmpl/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package HikaShop for Joomla!
* @version 4.4.1
* @author hikashop.com
* @copyright (C) 2010-2021 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
$cart = $this->checkoutHelper->getCart();
if(!hikashop_level(2))
return;
$fields = null;
if(!empty($cart->order_fields)) {
$fields = hikashop_copy($cart->order_fields);
if(!empty($this->options['fields'])){
$ids = is_string($this->options['fields']) ?
explode(',', $this->options['fields']) :
$this->options['fields'];
$unset = array();
foreach($cart->order_fields as $k => $field){
if(!in_array($field->field_id, $ids)){
$unset[] = $k;
}
}
if(count($unset)){
foreach($unset as $u){
unset($fields[$u]);
}
}
}
}
$labelcolumnclass = 'hkc-sm-4';
$inputcolumnclass = 'hkc-sm-8';
if(empty($this->ajax)) {
?>
<div id="hikashop_checkout_fields_<?php echo $this->step;
?>_<?php echo $this->module_position; ?>"
data-checkout-step="<?php echo $this->step; ?>"
data-checkout-pos="<?php echo $this->module_position;
?>" class="hikashop_checkout_fields">
<?php } ?>
<div class="hikashop_checkout_loading_elem"></div>
<div
class="hikashop_checkout_loading_spinner"></div>
<?php
$this->checkoutHelper->displayMessages('fields');
?>
<fieldset class="hkform-horizontal">
<?php
if(!empty($fields)) {
if(!empty($this->options['show_title'])) {
?>
<legend><?php echo JText::_('ADDITIONAL_INFORMATION');
?></legend>
<?php
}
foreach($fields as $fieldName => $oneExtraField) {
$oneExtraField->registration_page = @$this->registration_page;
?>
<div class="hkform-group control-group hikashop_checkout_<?php
echo $fieldName;?>_line" id="hikashop_order_<?php echo
$this->step . '_' . $this->module_position . '_'
. $oneExtraField->field_namekey; ?>">
<?php
$requiredDisplay = true;
if(!empty($this->options['read_only'])) {
$requiredDisplay = false;
}
echo $this->fieldClass->getFieldName($oneExtraField,
$requiredDisplay, $labelcolumnclass.' hkcontrol-label');
if(!empty($this->options['read_only'])) {
echo ': ';
}
?>
<div class="<?php echo $inputcolumnclass;?>">
<?php
if(empty($this->options['read_only'])) {
$onWhat = ($oneExtraField->field_type == 'radio') ?
'onclick' : 'onchange';
echo $this->fieldClass->display(
$oneExtraField,
(isset($_SESSION['hikashop_order_data']) &&
is_object($_SESSION['hikashop_order_data']) &&
isset($_SESSION['hikashop_order_data']->$fieldName) &&
!is_null($_SESSION['hikashop_order_data']->$fieldName)) ?
$_SESSION['hikashop_order_data']->$fieldName :
@$cart->cart_fields->$fieldName,
'data[order_' . $this->step . '_' .
$this->module_position.']['.$fieldName.']',
false,
' class="hkform-control"
'.$onWhat.'="window.hikashop.toggleField(this.value,\''.$fieldName.'\',\'order_'
. $this->step . '_' .
$this->module_position.'\',0,\'hikashop_\');"',
false,
$fields,
$cart->cart_fields,
false
);
}else{
echo $this->fieldClass->show($oneExtraField,
@$cart->cart_fields->$fieldName);
}
?>
</div>
</div>
<?php
}
if(!empty($this->options['show_submit'])) {
?>
<div class="hkform-group control-group
hikashop_fields_button_line">
<div class="<?php echo $labelcolumnclass;?>
hkcontrol-label"></div>
<div class=" <?php echo $inputcolumnclass;?>">
<button type="submit" onclick="return
window.checkout.submitFields(<?php echo
$this->step.','.$this->module_position; ?>);"
class="<?php echo
$this->config->get('css_button','hikabtn'); ?>
hikabtn_checkout_fields_submit">
<?php echo JText::_('HIKA_SUBMIT_FIELDS'); ?>
</button>
</div>
</div>
<?php
}
}
?>
</fieldset>
<?php
if(!empty($this->options['js'])) {
?>
<script type="text/javascript">
<?php echo $this->options['js']; ?>
</script>
<?php
}
if(empty($this->ajax)) { ?>
</div>
<script type="text/javascript">
if(!window.checkout) window.checkout = {};
window.Oby.registerAjax(['checkout.fields.updated','cart.updated','checkout.shipping.changed','checkout.payment.changed'],
function(params){
window.checkout.refreshFields(<?php echo (int)$this->step; ?>,
<?php echo (int)$this->module_position; ?>);
});
window.checkout.refreshFields = function(step, id) { return
window.checkout.refreshBlock('fields', step, id); };
window.checkout.submitFields = function(step, id) {
return window.checkout.submitBlock('fields', step, id);
};
</script>
<?php }