| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Block/Adminhtml/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Block/Adminhtml/Transactions.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Block\Adminhtml;
/**
* Adminhtml sales transactions block
*
* @api
* @author Magento Core Team <core@magentocommerce.com>
* @since 100.0.2
*/
class Transactions extends \Magento\Backend\Block\Widget\Grid\Container
{
/**
* Constructor
*
* @return void
*/
protected function _construct()
{
$this->_controller = 'adminhtml_transactions';
$this->_blockGroup = 'Magento_Sales';
$this->_headerText = __('Transactions');
parent::_construct();
$this->buttonList->remove('add');
}
}