Rule.php 617 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Admin tax rule content block
  8. *
  9. * @author Magento Core Team <core@magentocommerce.com>
  10. */
  11. namespace Magento\Tax\Block\Adminhtml;
  12. /**
  13. * @api
  14. * @since 100.0.2
  15. */
  16. class Rule extends \Magento\Backend\Block\Widget\Grid\Container
  17. {
  18. /**
  19. * @return void
  20. */
  21. protected function _construct()
  22. {
  23. $this->_controller = 'tax_rule';
  24. $this->_headerText = __('Manage Tax Rules');
  25. $this->_addButtonLabel = __('Add New Tax Rule');
  26. parent::_construct();
  27. }
  28. }