Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-shipping
view
adminhtml
templates
order
view
info.phtml
Go to the documentation of this file.
1
<?php
7
// @codingStandardsIgnoreFile
8
9
?>
10
<?php ?>
11
<?php
$order
=
$block
->getOrder() ?>
12
<?php
if
(
$order
->getIsVirtual()) :
return
''
;
endif
; ?>
13
14
<?php
/* Shipping Method */
?>
15
<div
class
=
"admin__page-section-item order-shipping-method"
>
16
<div
class
=
"admin__page-section-item-title"
>
17
<span
class
=
"title"
><?=
/* @escapeNotVerified */
__
(
'Shipping & Handling Information'
) ?></span>
18
</div>
19
<div
class
=
"admin__page-section-item-content"
>
20
<?php
if
(
$order
->getTracksCollection()->count()) : ?>
21
<p><a href=
"#"
id
=
"linkId"
onclick=
"popWin('<?= /* @escapeNotVerified */ $this->helper('Magento\Shipping\Helper\Data')->getTrackingPopupUrlBySalesModel($order) ?>','trackorder','width=800,height=600,resizable=yes,scrollbars=yes')"
title=
"<?= /* @escapeNotVerified */ __('Track Order') ?>"
><?=
/* @escapeNotVerified */
__
(
'Track Order'
) ?></a></p>
22
<?php
endif
; ?>
23
<?php
if
(
$order
->getShippingDescription()): ?>
24
<strong><?=
$block
->escapeHtml(
$order
->getShippingDescription()) ?></strong>
25
26
<?php
if
($this->helper(
'Magento\Tax\Helper\Data'
)->displayShippingPriceIncludingTax()): ?>
27
<?php
$_excl
=
$block
->displayShippingPriceInclTax(
$order
); ?>
28
<?php
else
: ?>
29
<?php
$_excl
=
$block
->displayPriceAttribute(
'shipping_amount'
,
false
,
' '
); ?>
30
<?php
endif
; ?>
31
<?php
$_incl
=
$block
->displayShippingPriceInclTax(
$order
); ?>
32
33
<?=
/* @escapeNotVerified */
$_excl
?>
34
<?php
if
($this->helper(
'Magento\Tax\Helper\Data'
)->displayShippingBothPrices() &&
$_incl
!=
$_excl
): ?>
35
(<?=
/* @escapeNotVerified */
__
(
'Incl. Tax'
) ?> <?=
/* @escapeNotVerified */
$_incl
?>)
36
<?php
endif
; ?>
37
<?php
else
: ?>
38
<?=
/* @escapeNotVerified */
__
(
'No shipping information available'
) ?>
39
<?php
endif
; ?>
40
</div>
41
</div>
endif
foreach( $block->getCcAvailableTypes() as $typeCode=> $typeName)( $typeCode) ?>" <?php if ($typeCode endif
Definition:
info.phtml:44
$order
$order
Definition:
info.phtml:13
__
__()
Definition:
__.php:13
$block
$block
Definition:
block.php:8
$_excl
$_excl
Definition:
shipping.phtml:60
$_incl
$_incl
Definition:
info.phtml:31