| Current Path : /home/rtorresani/www/vendor/magento/module-wishlist/view/frontend/templates/ |
| Current File : //home/rtorresani/www/vendor/magento/module-wishlist/view/frontend/templates/options_list.phtml |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/* @var \Magento\Wishlist\Block\Customer\Wishlist\Item\Options $block */
?>
<?php $options = $block->getOptionList(); ?>
<?php if ($options) : ?>
<div class="tooltip wrapper product-item-tooltip">
<span class="action details tooltip toggle"><?= $block->escapeHtml(__('See Details')) ?></span>
<div class="tooltip content">
<strong class="subtitle"><?= $block->escapeHtml(__('Options Details')) ?></strong>
<dl>
<?php foreach ($options as $option) : ?>
<dt class="label"><?= $block->escapeHtml($option['label']) ?></dt>
<dd class="values">
<?php if (is_array($option['value'])) : ?>
<?= /* @noEscape */ nl2br(implode("\n", $option['value'])) ?>
<?php else : ?>
<?= /* @noEscape */ $option['value'] ?>
<?php endif; ?>
</dd>
<?php endforeach; ?>
</dl>
</div>
</div>
<?php endif ?>