Rating.php 641 B

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