Spamworldpro Mini Shell
Spamworldpro


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/cartforge.co/app/code/Amasty/MWishlist/view/frontend/templates/email/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/corals/cartforge.co/app/code/Amasty/MWishlist/view/frontend/templates/email/price.phtml
<?php
/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Multiple Wishlist for Magento 2
 */
/** @var $block \Amasty\MWishlist\Block\Email\PriceAlert */
/** @var \Magento\Framework\Escaper $escaper */
?>

<?php if ($block->getItemsToNotify()): ?>
    <?php foreach ($block->getItemsToNotify() as $wishlist): ?>
        <div class="amwishlist-wishlist-block">
            <a class="amwishlist-title"
               href="<?= $escaper->escapeUrl($block->getViewUrl($wishlist['wishlist']->getWishlistId())) ?>"
               target="_blank">
                <?= $escaper->escapeHtml($wishlist['wishlist']->getName()) ?>
            </a>

            <ol class="amwishlist-wishlist-items products items product-items">
                <?php foreach ($wishlist['items'] as $wishlistItem): ?>
                    <?php $product = $wishlistItem->getProduct(); ?>
                    <li class="item product product-item">
                        <div class="product-item-info">
                            <a href="<?= $escaper->escapeUrl($product->getProductUrl()) ?>"
                               target="_blank"
                               class="product photo product-item-photo">
                                <img class="amwishlist-image"
                                     src="<?= $escaper->escapeUrl($block->getImageUrl($product)) ?>"
                                     alt="<?= $escaper->escapeHtml($product->getName()) ?>">
                            </a>
                            <div class="product details product-item-details">
                                <a class="amwishlist-product-name"
                                   target="_blank"
                                   href="<?= $escaper->escapeUrl($product->getProductUrl()) ?>">
                                    <?= $escaper->escapeHtml($product->getName()) ?>
                                </a>

                                <?= /* @noEscape */ $block->getProductPriceHtml($product) ?>
                            </div>
                        </div>
                    </li>
                <?php endforeach; ?>
            </ol>
        </div>
    <?php endforeach; ?>
<?php endif; ?>

Spamworldpro Mini