![]() 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/generated/code/Magento/Wishlist/Helper/Data/ |
<?php namespace Magento\Wishlist\Helper\Data; /** * Interceptor class for @see \Magento\Wishlist\Helper\Data */ class Interceptor extends \Magento\Wishlist\Helper\Data implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Framework\Registry $coreRegistry, \Magento\Customer\Model\Session $customerSession, \Magento\Wishlist\Model\WishlistFactory $wishlistFactory, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Data\Helper\PostHelper $postDataHelper, \Magento\Customer\Helper\View $customerViewHelper, \Magento\Wishlist\Controller\WishlistProviderInterface $wishlistProvider, \Magento\Catalog\Api\ProductRepositoryInterface $productRepository, ?\Magento\Framework\Escaper $escaper = null) { $this->___init(); parent::__construct($context, $coreRegistry, $customerSession, $wishlistFactory, $storeManager, $postDataHelper, $customerViewHelper, $wishlistProvider, $productRepository, $escaper); } /** * {@inheritdoc} */ public function getAddParams($item, array $params = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAddParams'); return $pluginInfo ? $this->___callPlugins('getAddParams', func_get_args(), $pluginInfo) : parent::getAddParams($item, $params); } /** * {@inheritdoc} */ public function getMoveFromCartParams($itemId) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getMoveFromCartParams'); return $pluginInfo ? $this->___callPlugins('getMoveFromCartParams', func_get_args(), $pluginInfo) : parent::getMoveFromCartParams($itemId); } /** * {@inheritdoc} */ public function getAddToCartUrl($item) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getAddToCartUrl'); return $pluginInfo ? $this->___callPlugins('getAddToCartUrl', func_get_args(), $pluginInfo) : parent::getAddToCartUrl($item); } }