![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-wishlist/view/frontend/templates/ |
<?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 ?>