CouponsGrid.php 556 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote;
  8. class CouponsGrid extends \Magento\SalesRule\Controller\Adminhtml\Promo\Quote
  9. {
  10. /**
  11. * Coupon codes grid
  12. *
  13. * @return void
  14. */
  15. public function execute()
  16. {
  17. $this->_initRule();
  18. $this->_view->loadLayout();
  19. $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Cart Price Rules'));
  20. $this->_view->renderLayout();
  21. }
  22. }