Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Image.php
Go to the documentation of this file.
1 <?php
7 
19 {
24  protected $imageHelper;
25 
30  protected $product;
31 
36  protected $attributes = [];
37 
42  public function __construct(
43  \Magento\Framework\View\Element\Template\Context $context,
44  array $data = []
45  ) {
46  if (isset($data['template'])) {
47  $this->setTemplate($data['template']);
48  unset($data['template']);
49  }
50  parent::__construct($context, $data);
51  }
52 }
__construct(\Magento\Framework\View\Element\Template\Context $context, array $data=[])
Definition: Image.php:42