1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\SalesRule\Block\Adminhtml\Promo;
- /**
- * Catalog price rules
- *
- * @api
- * @author Magento Core Team <core@magentocommerce.com>
- * @since 100.0.2
- */
- class Quote extends \Magento\Backend\Block\Widget\Grid\Container
- {
- /**
- * Constructor
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_controller = 'promo_quote';
- $this->_headerText = __('Cart Price Rules');
- $this->_addButtonLabel = __('Add New Rule');
- parent::_construct();
- }
- }
|