![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-catalog-rule/Controller/Adminhtml/Promo/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** * Backend Catalog Price Rules controller * * @author Magento Core Team <[email protected]> */ namespace Magento\CatalogRule\Controller\Adminhtml\Promo; use Magento\Backend\App\Action; use Magento\Backend\App\Action\Context; use Magento\Framework\Registry; use Magento\Framework\Stdlib\DateTime\Filter\Date; abstract class Catalog extends Action { /** * Authorization level of a basic admin session * * @see _isAllowed() */ const ADMIN_RESOURCE = 'Magento_CatalogRule::promo_catalog'; /** * Dirty rules notice message * * * @var string */ protected $_dirtyRulesNoticeMessage; /** * Core registry * * @var Registry */ protected $_coreRegistry = null; /** * Date filter instance * * @var \Magento\Framework\Stdlib\DateTime\Filter\Date */ protected $_dateFilter; /** * Constructor * * @param Context $context * @param Registry $coreRegistry * @param Date $dateFilter */ public function __construct(Context $context, Registry $coreRegistry, Date $dateFilter) { parent::__construct($context); $this->_coreRegistry = $coreRegistry; $this->_dateFilter = $dateFilter; } /** * Init action * * @return $this */ protected function _initAction() { $this->_view->loadLayout(); $this->_setActiveMenu( 'Magento_CatalogRule::promo_catalog' )->_addBreadcrumb( __('Promotions'), __('Promotions') ); return $this; } /** * Set dirty rules notice message * * @param string $dirtyRulesNoticeMessage * @return void * @codeCoverageIgnore */ public function setDirtyRulesNoticeMessage($dirtyRulesNoticeMessage) { $this->_dirtyRulesNoticeMessage = $dirtyRulesNoticeMessage; } /** * Get dirty rules notice message * * @return string */ public function getDirtyRulesNoticeMessage() { $defaultMessage = __( 'We found updated rules that are not applied. Please click "Apply Rules" to update your catalog.' ); return $this->_dirtyRulesNoticeMessage ? $this->_dirtyRulesNoticeMessage : $defaultMessage; } }