![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/app/design/frontend/Cnc/default/Magento_Customer/templates/address/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @var \Magento\Customer\Block\Address\Edit $block */ /** @var \Magento\Customer\ViewModel\Address $viewModel */ /** @var \Magento\Framework\Escaper $escaper */ /** @var \Magento\Framework\View\Helper\SecureHtmlRenderer $secureRenderer */ $viewModel = $block->getViewModel(); ?> <?php $_company = $block->getLayout()->createBlock(\Magento\Customer\Block\Widget\Company::class) ?> <?php $_telephone = $block->getLayout()->createBlock(\Magento\Customer\Block\Widget\Telephone::class) ?> <?php $_fax = $block->getLayout()->createBlock(\Magento\Customer\Block\Widget\Fax::class) ?> <?php $_country_id = $block->getAttributeData()->getFrontendLabel('country_id'); ?> <?php $_street = $block->getAttributeData()->getFrontendLabel('street'); ?> <?php $_city = $block->getAttributeData()->getFrontendLabel('city'); ?> <?php $_region = $block->getAttributeData()->getFrontendLabel('region'); ?> <?php $_selectRegion = 'Please select a region, state or province.'; ?> <?php $_displayAll = $block->getConfig('general/region/display_all'); ?> <?php $_vatidValidationClass = $viewModel->addressGetAttributeValidationClass('vat_id'); ?> <?php $_cityValidationClass = $viewModel->addressGetAttributeValidationClass('city'); ?> <?php $_postcodeValidationClass_value = $viewModel->addressGetAttributeValidationClass('postcode'); ?> <?php $_postcodeValidationClass = $_postcodeValidationClass_value; ?> <?php $_streetValidationClass = $viewModel->addressGetAttributeValidationClass('street'); ?> <?php $_streetValidationClassNotRequired = trim(str_replace('required-entry', '', $_streetValidationClass)); ?> <?php $_regionValidationClass = $viewModel->addressGetAttributeValidationClass('region'); ?> <form class="form-address-edit" action="<?= $escaper->escapeUrl($block->getSaveUrl()) ?>" method="post" id="form-validate" enctype="multipart/form-data" data-hasrequired="<?= $escaper->escapeHtmlAttr(__('* Required Fields')) ?>"> <fieldset class="fieldset"> <legend class="legend"><span><?= $escaper->escapeHtml(__('Contact Information')) ?></span></legend><br> <?= $block->getBlockHtml('formkey') ?> <input type="hidden" name="success_url" value="<?= $escaper->escapeUrl($block->getSuccessUrl()) ?>"> <input type="hidden" name="error_url" value="<?= $escaper->escapeUrl($block->getErrorUrl()) ?>"> <?php if ($_company->isEnabled()) : ?> <?= $_company->setCompany($block->getAddress()->getCompany())->toHtml() ?> <?php endif ?> <?= $block->getNameBlockHtml() ?> <?php if ($_telephone->isEnabled()) : ?> <?= $_telephone->setTelephone($block->getAddress()->getTelephone())->toHtml() ?> <?php endif ?> <div class="field taxvat"> <label class="label" for="taxvat"> <span><span><?= $block->escapeHtml(__('Tax/VAT Number')) ?></span></span> </label> <div class="control"> <input type="text" id="taxvat" name="vat_id" value="" placeholder="<?= $block->escapeHtml(__('VAT Number')) ?>" class="input-text"> </div> </div> <?php if ($_fax->isEnabled()) : ?> <?= $_fax->setFax($block->getAddress()->getFax())->toHtml() ?> <?php endif ?> </fieldset> <fieldset class="fieldset"> <legend class="legend"><span><?= $escaper->escapeHtml(__('Address')) ?></span></legend><br> <div class="field street required"> <label for="street_1" class="label"><span><?= /* @noEscape */ $_street ?></span></label> <div class="control"> <div class="field primary"> <label for="street_1" class="label"> <span> <?= $escaper->escapeHtml(__('Street Address: Line %1', 1)) ?> </span> </label> </div> <input type="text" name="street[]" value="<?= $escaper->escapeHtmlAttr($block->getStreetLine(1)) ?>" title="<?= /* @noEscape */ $_street ?>" placeholder="<?= /* @noEscape */ $_street ?>" id="street_1" class="input-text <?= $escaper->escapeHtmlAttr($_streetValidationClass) ?>"/> <div class="nested"> <?php for ($_i = 1, $_n = $viewModel->addressGetStreetLines(); $_i < $_n; $_i++) : ?> <div class="field additional"> <label class="label" for="street_<?= /* @noEscape */ $_i + 1 ?>"> <span><?= $escaper->escapeHtml(__('Street Address: Line %1', $_i + 1)) ?></span> </label> <div class="control"> <input type="text" name="street[]" value="<?= $escaper->escapeHtmlAttr($block->getStreetLine($_i + 1)) ?>" title="<?= $escaper->escapeHtmlAttr(__('Street Address %1', $_i + 1)) ?>" placeholder="<?= $escaper->escapeHtmlAttr(__('Street Address %1', $_i + 1)) ?>" id="street_<?= /* @noEscape */ $_i + 1 ?>" class="input-text <?= $escaper->escapeHtmlAttr($_streetValidationClassNotRequired) ?>"> </div> </div> <?php endfor; ?> </div> </div> </div> <?php if ($viewModel->addressIsVatAttributeVisible()) : ?> <div class="field taxvat"> <label class="label" for="vat_id"> <span><?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('vat_id') ?></span> </label> <div class="control"> <input type="text" name="vat_id" value="<?= $escaper->escapeHtmlAttr($block->getAddress()->getVatId()) ?>" title="<?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('vat_id') ?>" placeholder="<?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('vat_id') ?>" class="input-text <?= $escaper->escapeHtmlAttr($_vatidValidationClass) ?>" id="vat_id"> </div> </div> <?php endif; ?> <div class="field zip required"> <label class="label" for="zip"> <span><?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('postcode') ?></span> </label> <div class="control"> <input type="text" name="postcode" value="<?= $escaper->escapeHtmlAttr($block->getAddress()->getPostcode()) ?>" title="<?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('postcode') ?>" placeholder="<?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('postcode') ?>" id="zip" class="input-text validate-zip-international <?= $escaper->escapeHtmlAttr($_postcodeValidationClass) ?>"> <div role="alert" class="message warning"> <span></span> </div> <?= /* @noEscape */ $secureRenderer->renderStyleAsTag("display: none;", 'div.message.warning') ?> </div> </div> <div class="field city required"> <label class="label" for="city"> <span><?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('city') ?></span> </label> <div class="control"> <input type="text" name="city" value="<?= $escaper->escapeHtmlAttr($block->getAddress()->getCity()) ?>" title="<?= $escaper->escapeHtmlAttr(__('City')) ?>" placeholder="<?= $escaper->escapeHtmlAttr(__('City')) ?>" class="input-text <?= $escaper->escapeHtmlAttr($_cityValidationClass) ?>" id="city"> </div> </div> <div class="field region required" style="display: none;"> <label class="label" for="region_id"> <span><?= /* @noEscape */ $_region ?></span> </label> <div class="control"> <select id="region_id" name="region_id" title="<?= /* @noEscape */ $_region ?>" class="validate-select region_id" <?= /* @noEscape */ !$_displayAll ? ' disabled="disabled"' : '' ?>> <option value=""><?= $escaper->escapeHtml(__($_selectRegion)) ?></option> </select> <input type="text" id="region" name="region" value="<?= $escaper->escapeHtmlAttr($block->getRegion()) ?>" title="<?= /* @noEscape */ $_region ?>" placeholder="<?= /* @noEscape */ $_region ?>" class="input-text validate-not-number-first <?= $escaper->escapeHtmlAttr($_regionValidationClass) ?>" <?= !$_displayAll ? ' disabled="disabled"' : '' ?>/> </div> </div> <div class="field country required"> <label class="label" for="country"> <span><?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('country_id') ?></span> </label> <div class="control"> <?= $block->getCountryHtmlSelect() ?> </div> </div> <?php if ($block->isDefaultBilling()) : ?> <div class="message info"> <span><?= $escaper->escapeHtml(__("It's a default billing address.")) ?></span> </div> <?php elseif ($block->canSetAsDefaultBilling()) : ?> <div class="field choice set billing"> <input type="checkbox" id="primary_billing" name="default_billing" value="1" class="checkbox"> <label class="label" for="primary_billing"> <span><?= $escaper->escapeHtml(__('Use as my default billing address')) ?></span> </label> </div> <?php else : ?> <input type="hidden" name="default_billing" value="1" /> <?php endif; ?> <?php if ($block->isDefaultShipping()) : ?> <div class="message info"> <span><?= $escaper->escapeHtml(__("It's a default shipping address.")) ?></span> </div> <?php elseif ($block->canSetAsDefaultShipping()) : ?> <div class="field choice set shipping"> <input type="checkbox" id="primary_shipping" name="default_shipping" value="1" class="checkbox"> <label class="label" for="primary_shipping"> <span><?= $escaper->escapeHtml(__('Use as my default shipping address')) ?></span> </label> </div> <?php else : ?> <input type="hidden" name="default_shipping" value="1"> <?php endif; ?> </fieldset> <div class="actions-toolbar"> <div class="primary"> <button type="submit" class="action save primary" data-action="save-address" title="<?= $escaper->escapeHtmlAttr(__('Save Address')) ?>"> <span><?= $escaper->escapeHtml(__('Register Address')) ?></span> </button> </div> <div class="secondary"> <a class="action back" href="<?= $escaper->escapeUrl($block->getBackUrl()) ?>"> <span><?= $escaper->escapeHtml(__('Go back')) ?></span> </a> </div> </div> </form> <script type="text/x-magento-init"> { "#form-validate": { "addressValidation": { "postCodes": <?= /* @noEscape */ $block->getPostCodeConfig()->getSerializedPostCodes() ?> } }, "#country": { "regionUpdater": { "optionalRegionAllowed": <?= /* @noEscape */ $_displayAll ? 'true' : 'false' ?>, "regionListId": "#region_id", "regionInputId": "#region", "postcodeId": "#zip", "form": "#form-validate", "regionJson": <?= /* @noEscape */ $viewModel->dataGetRegionJson() ?>, "defaultRegion": "<?= (int) $block->getRegionId() ?>", "countriesWithOptionalZip": <?= /* @noEscape */ $viewModel->dataGetCountriesWithOptionalZip(true) ?> } } } </script>