コード例 #1
0
ファイル: Interceptor.php プロジェクト: rustamveer/magento2
 /**
  * {@inheritdoc}
  */
 public function getProductCollection()
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getProductCollection');
     if (!$pluginInfo) {
         return parent::getProductCollection();
     } else {
         return $this->___callPlugins('getProductCollection', func_get_args(), $pluginInfo);
     }
 }