Term.php 504 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Search\Block\Adminhtml;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. class Term extends \Magento\Backend\Block\Widget\Grid\Container
  12. {
  13. /**
  14. * @return void
  15. */
  16. protected function _construct()
  17. {
  18. $this->_controller = 'term';
  19. $this->_headerText = __('Search');
  20. $this->_addButtonLabel = __('Add New Search Term');
  21. parent::_construct();
  22. }
  23. }