Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Design.php
Go to the documentation of this file.
1 <?php
7 
9 
10 abstract class Design extends Action
11 {
17  const ADMIN_RESOURCE = 'Magento_Backend::design';
18 
24  protected $_coreRegistry = null;
25 
29  protected $dateFilter;
30 
35 
39  protected $resultPageFactory;
40 
45 
54  public function __construct(
55  \Magento\Backend\App\Action\Context $context,
56  \Magento\Framework\Registry $coreRegistry,
57  \Magento\Framework\Stdlib\DateTime\Filter\Date $dateFilter,
58  \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory,
59  \Magento\Framework\View\Result\PageFactory $resultPageFactory,
60  \Magento\Framework\View\Result\LayoutFactory $resultLayoutFactory
61  ) {
62  $this->_coreRegistry = $coreRegistry;
63  $this->dateFilter = $dateFilter;
64  parent::__construct($context);
65  $this->resultForwardFactory = $resultForwardFactory;
66  $this->resultPageFactory = $resultPageFactory;
67  $this->resultLayoutFactory = $resultLayoutFactory;
68  }
69 }
__construct(\Magento\Backend\App\Action\Context $context, \Magento\Framework\Registry $coreRegistry, \Magento\Framework\Stdlib\DateTime\Filter\Date $dateFilter, \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory, \Magento\Framework\View\Result\PageFactory $resultPageFactory, \Magento\Framework\View\Result\LayoutFactory $resultLayoutFactory)
Definition: Design.php:54