![]() 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/vendor/magento/module-sales/view/frontend/templates/order/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> <?php /** @var $block \Magento\Sales\Block\Order\Info */ ?> <?php $_order = $block->getOrder() ?> <div class="block block-order-details-view"> <div class="block-title"> <strong><?= $block->escapeHtml(__('Order Information')) ?></strong> </div> <div class="block-content"> <?php if (!$_order->getIsVirtual()) : ?> <div class="box box-order-shipping-address"> <strong class="box-title"><span><?= $block->escapeHtml(__('Shipping Address')) ?></span></strong> <div class="box-content"> <address><?= /* @noEscape */ $block->getFormattedAddress($_order->getShippingAddress()) ?></address> </div> </div> <div class="box box-order-shipping-method"> <strong class="box-title"> <span><?= $block->escapeHtml(__('Shipping Method')) ?></span> </strong> <div class="box-content"> <?php if ($_order->getShippingDescription()) : ?> <?= $block->escapeHtml($_order->getShippingDescription()) ?> <?php else : ?> <?= $block->escapeHtml(__('No shipping information available')) ?> <?php endif; ?> </div> </div> <?php endif; ?> <div class="box box-order-billing-address"> <strong class="box-title"> <span><?= $block->escapeHtml(__('Billing Address')) ?></span> </strong> <div class="box-content"> <address><?= /* @noEscape */ $block->getFormattedAddress($_order->getBillingAddress()) ?></address> </div> </div> <div class="box box-order-billing-method"> <strong class="box-title"> <span><?= $block->escapeHtml(__('Payment Method')) ?></span> </strong> <div class="box-content"> <?= $block->getPaymentInfoHtml() ?> </div> </div> </div> </div>