Esempio n. 1
0
 public function testSetPreconfiguredValueIfSuperGroupNotExist()
 {
     $this->productMock->expects($this->once())->method('getPreconfiguredValues')->will($this->returnValue($this->configuredValueMock));
     $this->configuredValueMock->expects($this->once())->method('getSuperGroup')->will($this->returnValue(false));
     $this->typeInstanceMock->expects($this->never())->method('getAssociatedProducts');
     $this->groupedView->setPreconfiguredValue();
 }
Esempio n. 2
0
 /**
  * {@inheritdoc}
  */
 public function getImage($product, $imageId, $attributes = array())
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getImage');
     if (!$pluginInfo) {
         return parent::getImage($product, $imageId, $attributes);
     } else {
         return $this->___callPlugins('getImage', func_get_args(), $pluginInfo);
     }
 }
Esempio n. 3
0
 /**
  * Redefine default price block
  * Set current customer to tax calculation
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->_useLinkForAsLowAs = false;
 }
Esempio n. 4
0
 /**
  * {@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);
     }
 }
Esempio n. 5
0
 /**
  * Redefine default price block
  * Set current customer to tax calculation
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->_block = 'Magento\\Catalog\\Block\\Adminhtml\\Product\\Price';
     $this->_useLinkForAsLowAs = false;
 }