| Current Path : /home/rtorresani/www/vendor/magento/module-wishlist/view/frontend/templates/item/column/ |
| Current File : //home/rtorresani/www/vendor/magento/module-wishlist/view/frontend/templates/item/column/edit.phtml |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/** @var \Magento\Wishlist\Block\Customer\Wishlist\Item\Column\Edit $block */
/** @var \Magento\Wishlist\Model\Item $item */
$item = $block->getItem();
$product = $item->getProduct();
?>
<?php if ($product->isVisibleInSiteVisibility()) : ?>
<a class="action edit" href="<?= $block->escapeUrl($block->getItemConfigureUrl($item)) ?>">
<span><?= $block->escapeHtml(__('Edit')) ?></span>
</a>
<?php endif ?>