File manager - Edit - /home/jardides/www/Jardi-design/old/administrator/components/com_j2store/views/order/tmpl/order_billing.php
Back
<?php /** * @package J2Store * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later */ // No direct access to this file defined('_JEXEC') or die; JHTML::_('behavior.modal', 'a.modal'); $this->address_type='billing'; ?> <div class="row-fluid"> <div class="span8 <?php echo (isset($this->orderinfo->j2store_orderinfo_id) && !empty($this->orderinfo->j2store_orderinfo_id)) ? 'hide':'';?>" id="select_billing_address"> <input name="save_shipping" type="checkbox" checked="checked" /><?php echo JText::_('J2STORE_SAME_AS_SHIPPING');?> <input type="hidden" value="<?php echo $this->address_type;?>" name="address_type" /> <div class="display_message" id="display_message"></div> <div class="billing-infos "> <?php if (isset($this->addresses) && count($this->addresses) > 0) : ?> <input type="radio" name="address" value="existing" id="billing-address-existing" checked="checked" /> <label for="billing-address-existing"><?php echo JText::_('J2STORE_ADDRESS_EXISTING'); ?></label> <select class="input-xxlarge" name="address_id" size="5" id="address_id" > <?php foreach ($this->addresses as $address) : ?> <?php if ($address->j2store_address_id == $this->billing_address_id) : ?> <option value="<?php echo $address->j2store_address_id; ?>" selected="selected"> <?php echo $address->first_name; ?> <?php echo $address->last_name; ?>, <?php echo $address->address_1; ?>, <?php echo $address->city; ?>, <?php echo $address->zip; ?>, <?php echo $address->zone_name; ?>, <?php echo $address->country_name; ?> </option> <?php else: ?> <option value="<?php echo $address->j2store_address_id; ?>"> <?php echo $address->first_name; ?> <?php echo $address->last_name; ?>, <?php echo $address->address_1; ?>, <?php echo $address->city; ?>, <?php echo $address->zip; ?>, <?php echo $address->zone_name; ?>, <?php echo $address->country_name; ?> </option> <?php endif; ?> <?php endforeach; ?> </select> <?php endif;?> </div> <div id="new-address"> <input name="validate_type" type="hidden" value="billing" id="validate_type"> <input type="radio" name="address" value="new" id="billing-address-new" /> <label for="billing-address-existing"><?php echo JText::_('J2STORE_ADDRESS_NEW'); ?></label> <div id="orderinfo-billing-<?php echo $this->order->j2store_order_id;?>" style="display:none;"> <?php $html = $this->storeProfile->get('store_billing_layout'); if(empty($html) || JString::strlen($html) < 5) { //we dont have a profile set in the store profile. So use the default one. $html = '<div class="row-fluid"> <div class="span6">[first_name] [last_name] [phone_1] [phone_2] [company] [tax_number]</div> <div class="span6">[address_1] [address_2] [city] [zip] [country_id] [zone_id]</div> </div>'; } //first find all the checkout fields preg_match_all("^\[(.*?)\]^",$html,$checkoutFields, PREG_PATTERN_ORDER); $allFields = $this->fields; ?> <?php foreach ($this->fields as $fieldName => $oneExtraField):?> <?php $onWhat='onchange'; if($oneExtraField->field_type=='radio') $onWhat='onclick';?> <?php if(property_exists($this->address, $fieldName)): if(($fieldName !='email')){ ?> <?php //$fieldName_prefix =$this->address_type.'_'.$fieldName; $oneExtraField->display_label = 'yes';?> <?php $html = str_replace('['.$fieldName.']',$this->fieldClass->getFormatedDisplay($oneExtraField,$this->address->$fieldName,$fieldName,false, $options = '', $test = false, $allFields, $allValues = null).'</br />',$html); //$html = str_replace('['.$fieldName.']',$this->fieldsClass->getFormatedDisplay($oneExtraField,$this->billing_orderinfo->$fieldName, $fieldName,false, $options = '', $test = false, $allFields, $allValues = null).'</br />',$html); } ?> <?php endif;?> <?php endforeach; ?> <?php $unprocessedFields = array(); foreach($this->fields as $fieldName => $oneExtraField): if(!in_array($fieldName, $checkoutFields[1])): $unprocessedFields[$fieldName] = $oneExtraField; endif; endforeach; //now we have unprocessed fields. remove any other square brackets found. preg_match_all("^\[(.*?)\]^",$html,$removeFields, PREG_PATTERN_ORDER); foreach($removeFields[1] as $fieldName) { $html = str_replace('['.$fieldName.']', '', $html); } ?> <?php echo $html; ?> <?php if(count($unprocessedFields)): ?> <div class="row-fluid"> <div class="span12"> <?php $uhtml = '';?> <?php foreach ($unprocessedFields as $fieldName => $oneExtraField): ?> <?php $onWhat='onchange'; if($oneExtraField->field_type=='radio') $onWhat='onclick';?> <?php //print_r($this->billing_orderinfo); if(property_exists($this->address, $fieldName)): ?> <?php $oneExtraField->display_label = 'yes'; if(($fieldName !='email')){ $uhtml .= $this->fieldClass->getFormatedDisplay($oneExtraField,$this->address->$fieldName, $fieldName,false, $options = '', $test = false, $allFields, $allValues = null); } ?> <?php endif;?> <?php endforeach; ?> <?php echo $uhtml; ?> </div> </div> <?php endif; ?> </div> </div> </div> <div class="span4"> <div id="baddress-info"> <?php if(isset($this->orderinfo->j2store_orderinfo_id) && $this->orderinfo->j2store_orderinfo_id > 0):?> <strong><?php echo JText::_('J2STORE_BILLING_ADDRESS');?></strong> <?php echo J2StorePopup::popupAdvanced("index.php?option=com_j2store&view=orders&task=setOrderinfo&order_id=".$this->order->order_id."&address_type=billing&layout=address&tmpl=component",'',array('class'=>'fa fa-pencil','update'=>true,'width'=>700,'height'=>600));?> <br/> <br/> <?php echo '<strong>'.$this->orderinfo->billing_first_name." ".$this->orderinfo->billing_last_name."</strong><br/>"; ?> <?php echo $this->orderinfo->billing_address_1;?> <br/> <address> <?php echo $this->orderinfo->billing_address_2 ? $this->orderinfo->billing_address_2 : "<br/>";?> <?php echo $this->orderinfo->billing_city;?><br /> <?php echo $this->orderinfo->billing_zone_name ? $this->orderinfo->billing_zone_name.'<br />' : "";?> <?php echo !empty($this->orderinfo->billing_zip) ? $this->orderinfo->billing_zip.'<br />': '';?> <?php echo $this->orderinfo->billing_country_name." <br/> ".JText::_('J2STORE_TELEPHONE').":";?> <?php echo $this->orderinfo->billing_phone_1; echo $this->orderinfo->billing_phone_2 ? '<br/> '.$this->orderinfo->billing_phone_2 : "<br/> "; echo '<br/> '; echo '<a href="mailto:'.$this->order->user_email.'">'.$this->order->user_email.'</a>'; echo '<br/> '; echo $this->orderinfo->billing_company ? JText::_('J2STORE_ADDRESS_COMPANY_NAME').': '.$this->orderinfo->billing_company."</br>" : ""; echo $this->orderinfo->billing_tax_number ? JText::_('J2STORE_ADDRESS_TAX_NUMBER').': '.$this->orderinfo->billing_tax_number."</br>" : ""; ?> </address> <?php echo J2Store::getSelectableBase()->getFormatedCustomFields($this->orderinfo, 'customfields', 'billing'); ?> <br/> <button id="change_address" class="btn btn-warning"><?php echo JText::_("J2STORE_CHOOSE_ALTERNATE_ADDRESS");?></button> <br/> <br/> <?php endif;?> </div> </div> </div> <script type="text/javascript"> (function($) { $('#change_address').on('click',function(e){ e.preventDefault(); $('#select_billing_address').show(); $('#nextlayout').hide(); $('#saveAndNext').show(); $('#baddress-info').hide(); $('#display_message').after('<button id="close_address" class="btn btn-warning pull-right"><?php echo JText::_('J2STORE_CLOSE');?></button>'); }); })(j2store.jQuery); (function($) { $('#billing-address-existing').on('click' ,function(){ $('#orderinfo-billing-<?php echo $this->order->j2store_order_id;?>').slideUp(200); $('#nextlayout').hide(); $('#saveAndNext').show(); $('.j2error').remove(); }); $('#billing-address-new').on('click',function(){ $('#orderinfo-billing-<?php echo $this->order->j2store_order_id;?>').slideDown(200); $('#nextlayout').show(); $('#saveAndNext').hide(); $('.j2error').remove(); }); $('#country_id').bind('change', function() { if (this.value == '') return; $.ajax({ url: 'index.php?option=com_j2store&view=orders&task=getCountry&country_id=' + this.value, dataType: 'json', beforeSend: function() { $('#country_id').after('<span class="wait"> <img src="<?php echo JUri::root(true); ?>/media/j2store/images/loader.gif" alt="" /></span>'); }, complete: function() { $('.wait').remove(); }, success: function(json) { if (json['postcode_required'] == '1') { $('#billing-postcode-required').show(); } else { $('#billing-postcode-required').hide(); } html = '<option value=""><?php echo JText::_('J2STORE_SELECT_OPTION'); ?></option>'; if (json['zone'] != '') { for (i = 0; i < json['zone'].length; i++) { html += '<option value="' + json['zone'][i]['j2store_zone_id'] + '"'; if (json['zone'][i]['j2store_zone_id'] == '<?php echo $this->address->zone_id; ?>') { html += ' selected="selected"'; } html += '>' + json['zone'][i]['zone_name'] + '</option>'; } } else { html += '<option value="0" selected="selected"><?php echo JText::_('J2STORE_CHECKOUT_NONE'); ?></option>'; } //$("#<?php echo $this->address_type;?>_zone_id").html(html); $("#zone_id").html(html); }, error: function(xhr, ajaxOptions, thrownError) { //alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } }); }); })(j2store.jQuery); (function($) { if($('#country_id').length > 0) { $('#country_id').trigger('change'); } })(j2store.jQuery); </script>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings