![]() 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/old/generated/code/Magento/Catalog/Model/Layer/Category/ |
<?php namespace Magento\Catalog\Model\Layer\Category; /** * Interceptor class for @see \Magento\Catalog\Model\Layer\Category */ class Interceptor extends \Magento\Catalog\Model\Layer\Category implements \Magento\Framework\Interception\InterceptorInterface { use \Magento\Framework\Interception\Interceptor; public function __construct(\Magento\Catalog\Model\Layer\ContextInterface $context, \Magento\Catalog\Model\Layer\StateFactory $layerStateFactory, \Magento\Catalog\Model\ResourceModel\Product\Attribute\CollectionFactory $attributeCollectionFactory, \Magento\Catalog\Model\ResourceModel\Product $catalogProduct, \Magento\Store\Model\StoreManagerInterface $storeManager, \Magento\Framework\Registry $registry, \Magento\Catalog\Api\CategoryRepositoryInterface $categoryRepository, array $data = []) { $this->___init(); parent::__construct($context, $layerStateFactory, $attributeCollectionFactory, $catalogProduct, $storeManager, $registry, $categoryRepository, $data); } /** * {@inheritdoc} */ public function getStateKey() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getStateKey'); return $pluginInfo ? $this->___callPlugins('getStateKey', func_get_args(), $pluginInfo) : parent::getStateKey(); } /** * {@inheritdoc} */ public function getProductCollection() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getProductCollection'); return $pluginInfo ? $this->___callPlugins('getProductCollection', func_get_args(), $pluginInfo) : parent::getProductCollection(); } /** * {@inheritdoc} */ public function prepareProductCollection($collection) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'prepareProductCollection'); return $pluginInfo ? $this->___callPlugins('prepareProductCollection', func_get_args(), $pluginInfo) : parent::prepareProductCollection($collection); } /** * {@inheritdoc} */ public function apply() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'apply'); return $pluginInfo ? $this->___callPlugins('apply', func_get_args(), $pluginInfo) : parent::apply(); } /** * {@inheritdoc} */ public function getCurrentCategory() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurrentCategory'); return $pluginInfo ? $this->___callPlugins('getCurrentCategory', func_get_args(), $pluginInfo) : parent::getCurrentCategory(); } /** * {@inheritdoc} */ public function setCurrentCategory($category) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCurrentCategory'); return $pluginInfo ? $this->___callPlugins('setCurrentCategory', func_get_args(), $pluginInfo) : parent::setCurrentCategory($category); } /** * {@inheritdoc} */ public function getCurrentStore() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurrentStore'); return $pluginInfo ? $this->___callPlugins('getCurrentStore', func_get_args(), $pluginInfo) : parent::getCurrentStore(); } /** * {@inheritdoc} */ public function getState() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getState'); return $pluginInfo ? $this->___callPlugins('getState', func_get_args(), $pluginInfo) : parent::getState(); } /** * {@inheritdoc} */ public function addData(array $arr) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'addData'); return $pluginInfo ? $this->___callPlugins('addData', func_get_args(), $pluginInfo) : parent::addData($arr); } /** * {@inheritdoc} */ public function setData($key, $value = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setData'); return $pluginInfo ? $this->___callPlugins('setData', func_get_args(), $pluginInfo) : parent::setData($key, $value); } /** * {@inheritdoc} */ public function unsetData($key = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'unsetData'); return $pluginInfo ? $this->___callPlugins('unsetData', func_get_args(), $pluginInfo) : parent::unsetData($key); } /** * {@inheritdoc} */ public function getData($key = '', $index = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getData'); return $pluginInfo ? $this->___callPlugins('getData', func_get_args(), $pluginInfo) : parent::getData($key, $index); } /** * {@inheritdoc} */ public function getDataByPath($path) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByPath'); return $pluginInfo ? $this->___callPlugins('getDataByPath', func_get_args(), $pluginInfo) : parent::getDataByPath($path); } /** * {@inheritdoc} */ public function getDataByKey($key) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataByKey'); return $pluginInfo ? $this->___callPlugins('getDataByKey', func_get_args(), $pluginInfo) : parent::getDataByKey($key); } /** * {@inheritdoc} */ public function setDataUsingMethod($key, $args = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setDataUsingMethod'); return $pluginInfo ? $this->___callPlugins('setDataUsingMethod', func_get_args(), $pluginInfo) : parent::setDataUsingMethod($key, $args); } /** * {@inheritdoc} */ public function getDataUsingMethod($key, $args = null) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod'); return $pluginInfo ? $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo) : parent::getDataUsingMethod($key, $args); } /** * {@inheritdoc} */ public function hasData($key = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'hasData'); return $pluginInfo ? $this->___callPlugins('hasData', func_get_args(), $pluginInfo) : parent::hasData($key); } /** * {@inheritdoc} */ public function toArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toArray'); return $pluginInfo ? $this->___callPlugins('toArray', func_get_args(), $pluginInfo) : parent::toArray($keys); } /** * {@inheritdoc} */ public function convertToArray(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToArray'); return $pluginInfo ? $this->___callPlugins('convertToArray', func_get_args(), $pluginInfo) : parent::convertToArray($keys); } /** * {@inheritdoc} */ public function toXml(array $keys = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toXml'); return $pluginInfo ? $this->___callPlugins('toXml', func_get_args(), $pluginInfo) : parent::toXml($keys, $rootName, $addOpenTag, $addCdata); } /** * {@inheritdoc} */ public function convertToXml(array $arrAttributes = [], $rootName = 'item', $addOpenTag = false, $addCdata = true) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToXml'); return $pluginInfo ? $this->___callPlugins('convertToXml', func_get_args(), $pluginInfo) : parent::convertToXml($arrAttributes, $rootName, $addOpenTag, $addCdata); } /** * {@inheritdoc} */ public function toJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toJson'); return $pluginInfo ? $this->___callPlugins('toJson', func_get_args(), $pluginInfo) : parent::toJson($keys); } /** * {@inheritdoc} */ public function convertToJson(array $keys = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'convertToJson'); return $pluginInfo ? $this->___callPlugins('convertToJson', func_get_args(), $pluginInfo) : parent::convertToJson($keys); } /** * {@inheritdoc} */ public function toString($format = '') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'toString'); return $pluginInfo ? $this->___callPlugins('toString', func_get_args(), $pluginInfo) : parent::toString($format); } /** * {@inheritdoc} */ public function __call($method, $args) { $pluginInfo = $this->pluginList->getNext($this->subjectType, '__call'); return $pluginInfo ? $this->___callPlugins('__call', func_get_args(), $pluginInfo) : parent::__call($method, $args); } /** * {@inheritdoc} */ public function isEmpty() { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isEmpty'); return $pluginInfo ? $this->___callPlugins('isEmpty', func_get_args(), $pluginInfo) : parent::isEmpty(); } /** * {@inheritdoc} */ public function serialize($keys = [], $valueSeparator = '=', $fieldSeparator = ' ', $quote = '"') { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'serialize'); return $pluginInfo ? $this->___callPlugins('serialize', func_get_args(), $pluginInfo) : parent::serialize($keys, $valueSeparator, $fieldSeparator, $quote); } /** * {@inheritdoc} */ public function debug($data = null, &$objects = []) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'debug'); return $pluginInfo ? $this->___callPlugins('debug', func_get_args(), $pluginInfo) : parent::debug($data, $objects); } /** * {@inheritdoc} */ public function offsetSet($offset, $value) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetSet'); return $pluginInfo ? $this->___callPlugins('offsetSet', func_get_args(), $pluginInfo) : parent::offsetSet($offset, $value); } /** * {@inheritdoc} */ public function offsetExists($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetExists'); return $pluginInfo ? $this->___callPlugins('offsetExists', func_get_args(), $pluginInfo) : parent::offsetExists($offset); } /** * {@inheritdoc} */ public function offsetUnset($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetUnset'); return $pluginInfo ? $this->___callPlugins('offsetUnset', func_get_args(), $pluginInfo) : parent::offsetUnset($offset); } /** * {@inheritdoc} */ public function offsetGet($offset) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet'); return $pluginInfo ? $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo) : parent::offsetGet($offset); } }