| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-reports/Block/Adminhtml/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-reports/Block/Adminhtml/Product.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Reports\Block\Adminhtml;
/**
* Adminhtml products report page content block
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class Product extends \Magento\Backend\Block\Widget\Grid\Container
{
/**
* {@inheritdoc}
*/
protected function _construct()
{
$this->_blockGroup = 'Magento_Reports';
$this->_controller = 'adminhtml_product';
$this->_headerText = __('Products Report');
parent::_construct();
$this->buttonList->remove('add');
}
}