__construct() публичный Метод

Class constructor
public __construct ( Magento\Backend\App\Action\Context $context, Magento\Config\Model\Config\Structure $configStructure, Magento\Config\Controller\Adminhtml\System\ConfigSectionChecker $sectionChecker, Magento\Config\Model\Config $backendConfig )
$context Magento\Backend\App\Action\Context Action context
$configStructure Magento\Config\Model\Config\Structure Relevance configuration Structure
$sectionChecker Magento\Config\Controller\Adminhtml\System\ConfigSectionChecker Configuration Section Checker
$backendConfig Magento\Config\Model\Config Configuration model
Пример #1
0
 /**
  * Class constructor
  *
  * @param Context              $context           Action context
  * @param Structure            $configStructure   Relevance configuration Structure
  * @param ConfigSectionChecker $sectionChecker    Configuration Section Checker
  * @param RelevanceConfig      $backendConfig     Configuration model
  * @param PageFactory          $resultPageFactory Magento Page Factory
  */
 public function __construct(Context $context, Structure $configStructure, ConfigSectionChecker $sectionChecker, RelevanceConfig $backendConfig, PageFactory $resultPageFactory)
 {
     parent::__construct($context, $configStructure, $sectionChecker, $backendConfig);
     $this->resultPageFactory = $resultPageFactory;
 }