File manager - Edit - /home/jardides/www/Jardi-design/old/administrator/components/com_j2store/views/order/tmpl/address.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; ?> <style> .form-search input, .form-search textarea, .form-search select, .form-search .help-inline, .form-search .uneditable-input, .form-search .input-prepend, .form-search .input-append, .form-inline input, .form-inline textarea, .form-inline select, .form-inline .help-inline, .form-inline .uneditable-input, .form-inline .input-prepend, .form-inline .input-append, .form-horizontal input, .form-horizontal textarea, .form-horizontal select, .form-horizontal .help-inline, .form-horizontal .uneditable-input, .form-horizontal .input-prepend, .form-horizontal .input-append { display: block; margin-bottom: 0; vertical-align: middle; } </style> <div class="j2store"> <form class="form-horizontal" id="j2storeaddressForm" name="addressForm" method="post" action="<?php echo 'index.php'; ?>" > <h3><?php echo JText::_('J2STORE_ADDRESS_EDIT');?></h3> <div id="address"> <div class="j2store-address-alert"> </div> <div class="pull-right"> <input type="submit" onclick="jQuery('#task').attr('value','saveOrderinfo');" value="<?php echo JText::_('JAPPLY'); ?>" class="button btn btn-success" /> </div> <?php //$html = $this->storeProfile->store_billing_layout; $html =''; 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); $this->fields = $this->fieldClass->getFields($this->address_type,$this->orderinfo,'address'); $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->orderinfo, $fieldName)): $fieldName_prefix =$this->address_type.'_'.$fieldName; if(($fieldName !='email')){ $html = str_replace('['.$fieldName.']',$this->fieldClass->getFormatedDisplay($oneExtraField,$this->orderinfo->$fieldName,$fieldName_prefix,false, $options = '', $test = false, $allFields, $allValues = null),$html); } ?> <?php endif;?> <?php endforeach; ?> <?php //check for unprocessed fields. //If the user forgot to add the //fields to the checkout layout in store profile, we probably have some. $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 if(property_exists($this->orderinfo, $fieldName)): ?> <?php if(($fieldName !='email')){ $uhtml .= $this->fieldClass->getFormatedDisplay($oneExtraField,$this->orderinfo->$fieldName, $fieldName,false, $options = '', $test = false, $allFields, $allValues = null); } ?> <?php endif;?> <?php endforeach; ?> <?php echo $uhtml; ?> </div> </div> <?php endif; ?> </div> <input type="hidden" name="option" value="com_j2store" /> <input type="hidden" name="view" value="orders" /> <input type="hidden" id="task" name="task" value="" /> <input type="hidden" name="address_type" value="<?php echo $this->address_type;?>" /> <input type="hidden" name="order_id" value="<?php echo $this->item->order_id;?>" /> <input type="hidden" name="j2store_orderinfo_id" value="<?php echo $this->item->j2store_orderinfo_id;?>" /> <?php echo JHTML::_( 'form.token' ); ?> </form> </div> <script type="text/javascript"><!-- (function($) { $('#address #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() { $('#address #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') { $('#shipping-postcode-required').show(); } else { $('#shipping-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->orderinfo->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>'; } $("#address #<?php echo $this->address_type;?>_zone_id").html(html); }, error: function(xhr, ajaxOptions, thrownError) { //alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText); } }); }); })(j2store.jQuery); (function($) { if($('#address #country_id').length > 0) { $('#address #country_id').trigger('change'); } })(j2store.jQuery); //--></script>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings