| Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Block/Adminhtml/Product/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog/Block/Adminhtml/Product/Attribute.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Block\Adminhtml\Product;
/**
* Adminhtml catalog product attributes block
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class Attribute extends \Magento\Backend\Block\Widget\Grid\Container
{
/**
* @return void
*/
protected function _construct()
{
$this->_controller = 'adminhtml_product_attribute';
$this->_blockGroup = 'Magento_Catalog';
$this->_headerText = __('Product Attributes');
$this->_addButtonLabel = __('Add New Attribute');
parent::_construct();
}
}