Ejemplo n.º 1
0
 public function __construct(\Magento\Catalog\Block\Product\Context $context, \Magento\Framework\Stdlib\ArrayUtils $arrayUtils, array $data = array())
 {
     $this->___init();
     parent::__construct($context, $arrayUtils, $data);
 }
Ejemplo n.º 2
0
 /**
  * @param \Magento\Catalog\Block\Product\Context $context
  * @param \Magento\Framework\Stdlib\ArrayUtils $arrayUtils
  * @param \Magento\Framework\Pricing\Helper\Data $pricingHelper
  * @param array $data
  */
 public function __construct(\Magento\Catalog\Block\Product\Context $context, \Magento\Framework\Stdlib\ArrayUtils $arrayUtils, \Magento\Framework\Pricing\Helper\Data $pricingHelper, array $data = [])
 {
     $this->pricingHelper = $pricingHelper;
     parent::__construct($context, $arrayUtils, $data);
 }
Ejemplo n.º 3
0
 /**
  * @param \Magento\Catalog\Block\Product\Context $context
  * @param \Magento\Framework\Stdlib\ArrayUtils $arrayUtils
  * @param \Magento\Core\Helper\Data $coreHelper
  * @param CustomerAccountService $customerAccountService
  * @param array $data
  */
 public function __construct(\Magento\Catalog\Block\Product\Context $context, \Magento\Framework\Stdlib\ArrayUtils $arrayUtils, \Magento\Core\Helper\Data $coreHelper, CustomerAccountService $customerAccountService, array $data = array())
 {
     $this->_customerAccountService = $customerAccountService;
     $this->_coreHelper = $coreHelper;
     parent::__construct($context, $arrayUtils, $data);
 }