| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-catalog/Controller/Product/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-catalog/Controller/Product/Compare.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Controller\Product;
use Magento\Catalog\Api\ProductRepositoryInterface;
use Magento\Framework\App\Action\HttpGetActionInterface;
use Magento\Framework\Data\Form\FormKey\Validator;
use Magento\Framework\View\Result\PageFactory;
/**
* Catalog compare controller
*
* @SuppressWarnings(PHPMD.LongVariable)
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
abstract class Compare extends \Magento\Framework\App\Action\Action implements HttpGetActionInterface
{
/**
* Customer id
*
* @var null|int
*/
protected $_customerId = null;
/**
* Catalog session
*
* @var \Magento\Catalog\Model\Session
*/
protected $_catalogSession;
/**
* Catalog product compare list
*
* @var \Magento\Catalog\Model\Product\Compare\ListCompare
*/
protected $_catalogProductCompareList;
/**
* Customer visitor
*
* @var \Magento\Customer\Model\Visitor
*/
protected $_customerVisitor;
/**
* Customer session
*
* @var \Magento\Customer\Model\Session
*/
protected $_customerSession;
/**
* Item collection factory
*
* @var \Magento\Catalog\Model\ResourceModel\Product\Compare\Item\CollectionFactory
*/
protected $_itemCollectionFactory;
/**
* Compare item factory
*
* @var \Magento\Catalog\Model\Product\Compare\ItemFactory
*/
protected $_compareItemFactory;
/**
* @var \Magento\Store\Model\StoreManagerInterface
*/
protected $_storeManager;
/**
* @var Validator
*/
protected $_formKeyValidator;
/**
* @var \Magento\Framework\View\Result\PageFactory
*/
protected $resultPageFactory;
/**
* @var ProductRepositoryInterface
*/
protected $productRepository;
/**
* Constructor
*
* @param \Magento\Framework\App\Action\Context $context
* @param \Magento\Catalog\Model\Product\Compare\ItemFactory $compareItemFactory
* @param \Magento\Catalog\Model\ResourceModel\Product\Compare\Item\CollectionFactory $itemCollectionFactory
* @param \Magento\Customer\Model\Session $customerSession
* @param \Magento\Customer\Model\Visitor $customerVisitor
* @param \Magento\Catalog\Model\Product\Compare\ListCompare $catalogProductCompareList
* @param \Magento\Catalog\Model\Session $catalogSession
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param Validator $formKeyValidator
* @param \Magento\Framework\View\Result\PageFactory $resultPageFactory
* @param ProductRepositoryInterface $productRepository
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
*/
public function __construct(
\Magento\Framework\App\Action\Context $context,
\Magento\Catalog\Model\Product\Compare\ItemFactory $compareItemFactory,
\Magento\Catalog\Model\ResourceModel\Product\Compare\Item\CollectionFactory $itemCollectionFactory,
\Magento\Customer\Model\Session $customerSession,
\Magento\Customer\Model\Visitor $customerVisitor,
\Magento\Catalog\Model\Product\Compare\ListCompare $catalogProductCompareList,
\Magento\Catalog\Model\Session $catalogSession,
\Magento\Store\Model\StoreManagerInterface $storeManager,
Validator $formKeyValidator,
PageFactory $resultPageFactory,
ProductRepositoryInterface $productRepository
) {
$this->_storeManager = $storeManager;
$this->_compareItemFactory = $compareItemFactory;
$this->_itemCollectionFactory = $itemCollectionFactory;
$this->_customerSession = $customerSession;
$this->_customerVisitor = $customerVisitor;
$this->_catalogProductCompareList = $catalogProductCompareList;
$this->_catalogSession = $catalogSession;
$this->_formKeyValidator = $formKeyValidator;
$this->resultPageFactory = $resultPageFactory;
$this->productRepository = $productRepository;
parent::__construct($context);
}
/**
* Setter for customer id
*
* @param int $customerId
* @return $this
*/
public function setCustomerId($customerId)
{
$this->_customerId = $customerId;
return $this;
}
/**
* @inheritdoc
*/
public function execute()
{
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath('catalog/product_compare');
return $resultRedirect;
}
}