Quote.php 637 B

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