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-paypal
view
frontend
templates
express
review
details.phtml
Go to the documentation of this file.
1
<?php
7
// @codingStandardsIgnoreFile
12
?>
13
<div
id
=
"details-reload"
class
=
"table-wrapper order-items cart"
>
14
<table
id
=
"details-table"
class
=
"cart items data table table-paypal-review-items"
>
15
<caption
class
=
"table-caption"
><?=
$block
->escapeHtml(
__
(
'Items in Your Shopping Cart'
)) ?></caption>
16
<thead>
17
<tr>
18
<th
class
=
"col name"
scope=
"col"
><?=
$block
->escapeHtml(
__
(
'Item'
)) ?></th>
19
<th
class
=
"col price"
scope=
"col"
><?=
$block
->escapeHtml(
__
(
'Price'
)) ?></th>
20
<th
class
=
"col qty"
scope=
"col"
><?=
$block
->escapeHtml(
__
(
'Qty'
)) ?></th>
21
<th
class
=
"col subtotal"
scope=
"col"
><?=
$block
->escapeHtml(
__
(
'Subtotal'
)) ?></th>
22
</tr>
23
</thead>
24
<?php
foreach
(
$block
->getItems() as
$item
): ?>
25
<?=
$block
->getItemHtml(
$item
) ?>
26
<?php
endforeach
?>
27
<tfoot
class
=
"opc-block-summary"
>
28
<?=
$block
->getChildHtml(
'totals'
) ?>
29
</tfoot>
30
</table>
31
</div>
__
__()
Definition:
__.php:13
$item
$item
Definition:
partial_invoice.php:27
$block
$block
Definition:
block.php:8
endforeach
endforeach
Definition:
details.phtml:35