Index.php 675 B

123456789101112131415161718192021222324
  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. use Magento\Framework\App\Action\HttpGetActionInterface as HttpGetActionInterface;
  9. class Index extends \Magento\SalesRule\Controller\Adminhtml\Promo\Quote implements HttpGetActionInterface
  10. {
  11. /**
  12. * Index action
  13. *
  14. * @return void
  15. */
  16. public function execute()
  17. {
  18. $this->_initAction()->_addBreadcrumb(__('Catalog'), __('Catalog'));
  19. $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Cart Price Rules'));
  20. $this->_view->renderLayout();
  21. }
  22. }