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-wishlist
view
frontend
templates
options_list.phtml
Go to the documentation of this file.
1
<?php
7
// @codingStandardsIgnoreFile
8
9
/* @var \Magento\Wishlist\Block\Customer\Wishlist\Item\Options $block */
10
?>
11
12
<?php
$options
=
$block
->getOptionList(); ?>
13
<?php
if
(
$options
): ?>
14
<div
class
=
"tooltip wrapper product-item-tooltip"
>
15
<span
class
=
"action details tooltip toggle"
><?=
$block
->escapeHtml(
__
(
'See Details'
)) ?></span>
16
<div
class
=
"tooltip content"
>
17
<strong
class
=
"subtitle"
><?=
$block
->escapeHtml(
__
(
'Options Details'
)) ?></strong>
18
<dl>
19
<?php
foreach
(
$options
as
$option
): ?>
20
<dt
class
=
"label"
><?=
$block
->escapeHtml(
$option
[
'label'
]) ?></dt>
21
<dd
class
=
"values"
>
22
<?php
if
(is_array(
$option
[
'value'
])): ?>
23
<?=
/* @noEscape */
nl2br(implode(
"\n"
,
$option
[
'value'
])) ?>
24
<?php
else
: ?>
25
<?=
/* @noEscape */
$option
[
'value'
] ?>
26
<?php
endif
; ?>
27
</dd>
28
<?php
endforeach
; ?>
29
</dl>
30
</div>
31
</div>
32
<?php
endif
?>
$options
$options
Definition:
options_list.phtml:12
endforeach
endforeach
Definition:
options_list.phtml:28
__
__()
Definition:
__.php:13
$block
$block
Definition:
block.php:8
endif
endif
Definition:
404.phtml:116
$option
$option
Definition:
product_configurable_with_single_child.php:38