| Current Path : /var/www/html/generated/code/Magento/Swatches/Block/Product/Renderer/Configurable/ |
| Current File : /var/www/html/generated/code/Magento/Swatches/Block/Product/Renderer/Configurable/Interceptor.php |
<?php
namespace Magento\Swatches\Block\Product\Renderer\Configurable;
/**
* Interceptor class for @see \Magento\Swatches\Block\Product\Renderer\Configurable
*/
class Interceptor extends \Magento\Swatches\Block\Product\Renderer\Configurable implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct(\Magento\Catalog\Block\Product\Context $context, \Magento\Framework\Stdlib\ArrayUtils $arrayUtils, \Magento\Framework\Json\EncoderInterface $jsonEncoder, \Magento\ConfigurableProduct\Helper\Data $helper, \Magento\Catalog\Helper\Product $catalogProduct, \Magento\Customer\Helper\Session\CurrentCustomer $currentCustomer, \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency, \Magento\ConfigurableProduct\Model\ConfigurableAttributeData $configurableAttributeData, \Magento\Swatches\Helper\Data $swatchHelper, \Magento\Swatches\Helper\Media $swatchMediaHelper, array $data = [], ?\Magento\Swatches\Model\SwatchAttributesProvider $swatchAttributesProvider = null, ?\Magento\Catalog\Model\Product\Image\UrlBuilder $imageUrlBuilder = null)
{
$this->___init();
parent::__construct($context, $arrayUtils, $jsonEncoder, $helper, $catalogProduct, $currentCustomer, $priceCurrency, $configurableAttributeData, $swatchHelper, $swatchMediaHelper, $data, $swatchAttributesProvider, $imageUrlBuilder);
}
/**
* {@inheritdoc}
*/
public function getJsonConfig()
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getJsonConfig');
return $pluginInfo ? $this->___callPlugins('getJsonConfig', func_get_args(), $pluginInfo) : parent::getJsonConfig();
}
/**
* {@inheritdoc}
*/
public function getImage($product, $imageId, $attributes = [])
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'getImage');
return $pluginInfo ? $this->___callPlugins('getImage', func_get_args(), $pluginInfo) : parent::getImage($product, $imageId, $attributes);
}
}