Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/zenit/components/com_hikashop/views/checkout/tmpl/ |
Upload File : |
<?php
/**
* @package HikaShop for Joomla!
* @version 4.5.1
* @author hikashop.com
* @copyright (C) 2010-2022 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;
$value = (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;
if(empty($value) && !empty($this->options['read_only']))
continue;
?>
<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;
}
$label = $this->fieldClass->getFieldName($oneExtraField, $requiredDisplay, $labelcolumnclass.' hkcontrol-label');
if(!empty($this->options['read_only'])) {
$label = str_replace('</label>',' :</label>',$label);
}
echo $label;
?>
<div class="<?php echo $inputcolumnclass;?>">
<?php
if(empty($this->options['read_only'])) {
$onWhat = ($oneExtraField->field_type == 'radio') ? 'onclick' : 'onchange';
echo $this->fieldClass->display(
$oneExtraField,
$value,
'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, $value);
}
?>
</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 }