History.php 552 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\ImportExport\Block\Adminhtml;
  7. /**
  8. * Adminhtml import history page content block
  9. *
  10. * @api
  11. * @author Magento Core Team <core@magentocommerce.com>
  12. * @since 100.0.2
  13. */
  14. class History extends \Magento\Backend\Block\Widget\Grid\Container
  15. {
  16. /**
  17. * Class constructor
  18. *
  19. * @return void
  20. */
  21. protected function _construct()
  22. {
  23. parent::_construct();
  24. $this->removeButton('add');
  25. }
  26. }