12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /** @var \Magento\Customer\Block\Address\Grid $block */
- $customerAddressView = $block->getData('customer_address');
- ?>
- <div class="block block-addresses-list">
- <div class="block-title"><strong><?= $block->escapeHtml(__('Additional Address Entries')) ?></strong></div>
- <div class="block-content">
- <?php if ($_pAddsses = $block->getAdditionalAddresses()): ?>
- <div class="table-wrapper additional-addresses">
- <table class="data table table-additional-addresses-items history" id="additional-addresses-table">
- <caption class="table-caption"><?= /* @escapeNotVerified */ __('Additional addresses') ?></caption>
- <thead>
- <tr>
- <th scope="col" class="col firstname"><?= /* @escapeNotVerified */ __('First Name') ?></th>
- <th scope="col" class="col lastname"><?= /* @escapeNotVerified */ __('Last Name') ?></th>
- <th scope="col" class="col streetaddress"><?= /* @escapeNotVerified */ __('Street Address') ?></th>
- <th scope="col" class="col city"><?= /* @escapeNotVerified */ __('City') ?></th>
- <th scope="col" class="col country"><?= /* @escapeNotVerified */ __('Country') ?></th>
- <th scope="col" class="col state"><?= /* @escapeNotVerified */ __('State') ?></th>
- <th scope="col" class="col zip"><?= /* @escapeNotVerified */ __('Zip/Postal Code') ?></th>
- <th scope="col" class="col phone"><?= /* @escapeNotVerified */ __('Phone') ?></th>
- <th scope="col" class="col actions"> </th>
- </tr>
- </thead>
- <tbody>
- <?php foreach ($_pAddsses as $address): ?>
- <tr>
- <td data-th="<?= $block->escapeHtml(__('First Name')) ?>" class="col firstname"><?= $block->escapeHtml($address->getFirstname()) ?></td>
- <td data-th="<?= $block->escapeHtml(__('Last Name')) ?>" class="col lastname"><?= $block->escapeHtml($address->getLastname()) ?></td>
- <td data-th="<?= $block->escapeHtml(__('Street Address')) ?>" class="col streetaddress"><?= $block->escapeHtml($block->getStreetAddress($address)) ?></td>
- <td data-th="<?= $block->escapeHtml(__('City')) ?>" class="col city"><?= $block->escapeHtml($address->getCity()) ?></td>
- <td data-th="<?= $block->escapeHtml(__('Country')) ?>" class="col country"><?= /* @escapeNotVerified */ $block->getCountryByCode($address->getCountryId()) ?></td>
- <td data-th="<?= $block->escapeHtml(__('State')) ?>" class="col state"><?= /* @escapeNotVerified */ $address->getRegion()->getRegion() ?></td>
- <td data-th="<?= $block->escapeHtml(__('Zip/Postal Code')) ?>" class="col zip"><?= $block->escapeHtml($address->getPostcode()) ?></td>
- <td data-th="<?= $block->escapeHtml(__('Phone')) ?>" class="col phone"><?= $block->escapeHtml($address->getTelephone()) ?></td>
- <td data-th="<?= $block->escapeHtml(__('Actions')) ?>" class="col actions">
- <a class="action edit" href="<?= $block->escapeUrl($block->getUrl('customer/address/edit', ['id' => $address->getId()])) ?>"><span><?= $block->escapeHtml(__('Edit')) ?></span></a>
- <a class="action delete" href="#" role="delete-address" data-address="<?= $block->escapeHtmlAttr($address->getId()) ?>"><span><?= $block->escapeHtml(__('Delete')) ?></span></a>
- </td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- </div>
- <?php if ($block->getChildHtml('pager')): ?>
- <div class="customer-addresses-toolbar toolbar bottom"><?= $block->getChildHtml('pager') ?></div>
- <?php endif ?>
- <?php else: ?>
- <p class="empty"><?= $block->escapeHtml(__('You have no other address entries in your address book.')) ?></p>
- <?php endif ?>
- </div>
- </div>
- <div class="actions-toolbar">
- <div class="primary">
- <button type="button" role="add-address" title="<?= $block->escapeHtmlAttr(__('Add New Address')) ?>" class="action primary add"><span><?= $block->escapeHtml(__('Add New Address')) ?></span></button>
- </div>
- <div class="secondary">
- <a class="action back" href="<?= $block->escapeUrl($block->getBackUrl()) ?>"><span><?= $block->escapeHtml(__('Back')) ?></span></a>
- </div>
- </div>
- <script type="text/x-magento-init">
- {
- ".page-main": {
- "address": {
- "deleteAddress": "td a[role='delete-address']",
- "deleteUrlPrefix": "<?= $block->escapeJs($block->escapeUrl($block->getDeleteUrl())) ?>id/",
- "addAddress": "button[role='add-address']",
- "addAddressLocation": "<?= $block->escapeJs($block->escapeUrl($block->getAddAddressUrl())) ?>"
- }
- }
- }
- </script>
|