Search.php 650 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Search\Block\Adminhtml\Reports;
  7. /**
  8. * Adminhtml search report page content block
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. class Search extends \Magento\Backend\Block\Widget\Grid\Container
  14. {
  15. /**
  16. * Initialize Grid Container
  17. *
  18. * @return void
  19. */
  20. protected function _construct()
  21. {
  22. $this->_blockGroup = 'Magento_Search';
  23. $this->_controller = 'adminhtml_search';
  24. $this->_headerText = __('Search Terms');
  25. parent::_construct();
  26. $this->buttonList->remove('add');
  27. }
  28. }