12345678910111213141516171819202122232425262728 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\CatalogRule\Controller\Adminhtml\Promo;
- class Index extends \Magento\Backend\App\Action
- {
- /**
- * Authorization level of a basic admin session
- *
- * @see _isAllowed()
- */
- const ADMIN_RESOURCE = 'Magento_CatalogRule::promo';
- /**
- * @return void
- */
- public function execute()
- {
- $this->_view->loadLayout();
- $this->_setActiveMenu('Magento_CatalogRule::promo');
- $this->_addBreadcrumb(__('Promotions'), __('Promo'));
- $this->_view->renderLayout();
- }
- }
|