12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Bundle\Observer;
- use Magento\Framework\Event\ObserverInterface;
- class SetAttributeTabBlockObserver implements ObserverInterface
- {
- /**
- * Catalog helper
- *
- * @var \Magento\Catalog\Helper\Catalog
- */
- protected $helperCatalog;
- /**
- * @param \Magento\Catalog\Helper\Catalog $helperCatalog
- */
- public function __construct(\Magento\Catalog\Helper\Catalog $helperCatalog)
- {
- $this->helperCatalog = $helperCatalog;
- }
- /**
- * Setting attribute tab block for bundle
- *
- * @param \Magento\Framework\Event\Observer $observer
- * @return $this
- */
- public function execute(\Magento\Framework\Event\Observer $observer)
- {
- $product = $observer->getEvent()->getProduct();
- if ($product->getTypeId() == \Magento\Catalog\Model\Product\Type::TYPE_BUNDLE) {
- $this->helperCatalog->setAttributeTabBlock(
- \Magento\Bundle\Block\Adminhtml\Catalog\Product\Edit\Tab\Attributes::class
- );
- }
- return $this;
- }
- }
|