Example #1
0
 /**
  * {@inheritdoc}
  */
 public function render(\Magento\Catalog\Model\Layer\Filter\FilterInterface $filter)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'render');
     if (!$pluginInfo) {
         return parent::render($filter);
     } else {
         return $this->___callPlugins('render', func_get_args(), $pluginInfo);
     }
 }
 /**
  * {@inheritdoc}
  */
 public function offsetGet($offset)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'offsetGet');
     if (!$pluginInfo) {
         return parent::offsetGet($offset);
     } else {
         return $this->___callPlugins('offsetGet', func_get_args(), $pluginInfo);
     }
 }