Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-catalog/view/frontend/templates/product/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-catalog/view/frontend/templates/product/listing.phtml

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
?>
<?php
// phpcs:disable Magento2.Templates.ThisInTemplate.FoundThis
// phpcs:disable Magento2.Files.LineLength.MaxExceeded
// phpcs:disable Magento2.Security.LanguageConstruct.DirectOutput

/**
 * Product list template
 *
 * @var $block \Magento\Catalog\Block\Product\ListProduct
 */
?>
<?php
$_productCollection = $block->getLoadedProductCollection();
$_helper = $this->helper(Magento\Catalog\Helper\Output::class);
?>
<?php if (!$_productCollection->count()) :?>
    <p class="message note"><?= $block->escapeHtml(__('We can\'t find products matching the selection.')) ?></p>
<?php else :?>
    <?= $block->getToolbarHtml() ?>
    <?= $block->getAdditionalHtml() ?>
    <?php
    if ($block->getMode() == 'grid') {
        $viewMode = 'grid';
        $image = 'category_page_grid';
        $showDescription = false;
        $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::SHORT_VIEW;
    } else {
        $viewMode = 'list';
        $image = 'category_page_list';
        $showDescription = true;
        $templateType = \Magento\Catalog\Block\Product\ReviewRendererInterface::FULL_VIEW;
    }
    ?>
    <div class="products wrapper <?= /* @noEscape */ $viewMode ?>">
        <ol class="products list items">
            <?php foreach ($_productCollection as $_product) :?>
                <li class="item product">
                    <div class="product">
                        <?php // Product Image ?>
                        <a href="<?= $block->escapeUrl($_product->getProductUrl()) ?>" class="product photo">
                            <?= $block->getImage($_product, $image)->toHtml() ?>
                        </a>
                        <div class="product details">
                            <?php

                            $info = [];
                            $info['name'] = '<strong class="product name">'
                                . ' <a href="' . $block->escapeUrl($_product->getProductUrl()) . '" title="'
                                . $block->stripTags($_product->getName(), null, true) . '">'
                                . $_helper->productAttribute($_product, $_product->getName(), 'name')
                                . '</a></strong>';
                            $info['price'] = $block->getProductPrice($_product);
                            $info['review'] = $block->getReviewsSummaryHtml($_product, $templateType);

                            if ($_product->isSaleable()) {
                                $info['button'] = '<button type="button" title="' . $block->escapeHtmlAttr(__('Add to Cart')) . '" class="action tocart"'
                                    . ' data-mage-init=\'{ "redirectUrl": { "event": "click", url: "' . $block->escapeUrl($block->getAddToCartUrl($_product)) . '"} }\'>'
                                    . '<span>' . $block->escapeHtml(__('Add to Cart')) . '</span></button>';
                            } else {
                                $info['button'] = $_product->isAvailable() ?   '<div class="stock available"><span>' . $block->escapeHtml(__('In stock')) . '</span></div>' :
                                    '<div class="stock unavailable"><span>' . $block->escapeHtml(__('Out of stock')) . '</span></div>';
                            }

                            $info['links'] = '<div class="product links" data-role="add-to-links">'
                                . '<a href="#" data-post=\'' . $this->helper(Magento\Wishlist\Helper\Data::class)->getAddParams($_product) . '\' class="action towishlist" data-action="add-to-wishlist">'
                                . '<span>' . $block->escapeHtml(__('Add to Wish List')) . '</span></a>'
                                . '<a href="' . $block->escapeUrl($block->getAddToCompareUrl($_product)) . '" class="action tocompare">'
                                . '<span>' . $block->escapeHtml(__('Add to Compare')) . '</span></a></div>';
                            $info['actions'] = '<div class="product action">' . $info['button'] . $info['links'] . '</div>';

                            if ($showDescription) {
                                $info['description'] =  '<div class="product description">'
                                    . $_helper->productAttribute($_product, $_product->getShortDescription(), 'short_description')
                                    . ' <a href="' . $block->escapeUrl($_product->getProductUrl()) . '" class="action more">'
                                    . $block->escapeHtml(__('Learn More')) . '</a></div>';
                            } else {
                                $info['description'] = '';
                            }

                            $details = $block->getInfoOrder() ?: ['name','price','review','description','actions'];
                            foreach ($details as $detail) {
                                /* @noEscape */ echo $info[$detail];
                            }
                            ?>

                        </div>
                    </div>
                </li>
            <?php endforeach; ?>
        </ol>
    </div>
    <?= $block->getToolbarHtml() ?>
<?php endif; ?>