| Current Path : /var/www/html/vendor/magento/module-bundle/Observer/ |
| Current File : /var/www/html/vendor/magento/module-bundle/Observer/SetAttributeTabBlockObserver.php |
<?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;
}
}