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-sales
view
frontend
templates
email
items
shipment
default.phtml
Go to the documentation of this file.
1
<?php
7
// @codingStandardsIgnoreFile
8
10
$_item
=
$block
->getItem() ?>
11
<tr>
12
<td
class
=
"item-info<?php if ($block->getItemOptions()): ?> has-extra<?php endif; ?>"
>
13
<p
class
=
"product-name"
><?=
$block
->escapeHtml(
$_item
->getName()) ?></p>
14
<p
class
=
"sku"
><?=
/* @escapeNotVerified */
__
(
'SKU'
) ?>: <?=
$block
->escapeHtml(
$block
->getSku(
$_item
)) ?></p>
15
<?php
if
(
$block
->getItemOptions()): ?>
16
<dl
class
=
"item-options"
>
17
<?php
foreach
(
$block
->getItemOptions() as
$option
): ?>
18
<dt><strong><em><?=
/* @escapeNotVerified */
$option
[
'label'
] ?></em></strong></dt>
19
<dd>
20
<?=
/* @escapeNotVerified */
nl2br(
$option
[
'value'
]) ?>
21
</dd>
22
<?php
endforeach
; ?>
23
</dl>
24
<?php
endif
; ?>
25
<?php
$addInfoBlock
=
$block
->getProductAdditionalInformationBlock(); ?>
26
<?php
if
(
$addInfoBlock
) :?>
27
<?=
$addInfoBlock
->setItem(
$_item
->getOrderItem())->toHtml() ?>
28
<?php
endif
; ?>
29
<?=
$block
->escapeHtml(
$_item
->getDescription()) ?>
30
</td>
31
<td
class
=
"item-qty"
><?=
/* @escapeNotVerified */
$_item
->getQty() * 1 ?></td>
32
</tr>
$option
$option
Definition:
default.phtml:8
__
__()
Definition:
__.php:13
$block
$block
Definition:
block.php:8
endforeach
endforeach
Definition:
default.phtml:72
$_item
$_item
Definition:
default.phtml:11
endif
if( $_item->getOrderItem() ->getParentItem())( $_item) ?><?php if( $_prevOptionId ! $_prevOptionId endif
Definition:
default.phtml:41
$addInfoBlock
$addInfoBlock
Definition:
default.phtml:63