1234567891011121314151617181920212223 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\SalesRule\Controller\Adminhtml\Promo\Quote;
- class CouponsGrid extends \Magento\SalesRule\Controller\Adminhtml\Promo\Quote
- {
- /**
- * Coupon codes grid
- *
- * @return void
- */
- public function execute()
- {
- $this->_initRule();
- $this->_view->loadLayout();
- $this->_view->getPage()->getConfig()->getTitle()->prepend(__('Cart Price Rules'));
- $this->_view->renderLayout();
- }
- }
|