function SystemController::__construct

Same name and namespace in other branches
  1. 8.9.x core/modules/system/src/Controller/SystemController.php \Drupal\system\Controller\SystemController::__construct()
  2. 10 core/modules/system/src/Controller/SystemController.php \Drupal\system\Controller\SystemController::__construct()
  3. 11.x core/modules/system/src/Controller/SystemController.php \Drupal\system\Controller\SystemController::__construct()

Constructs a new SystemController.

Parameters

\Drupal\system\SystemManager $systemManager: System manager service.

\Drupal\Core\Theme\ThemeAccessCheck $theme_access: The theme access checker service.

\Drupal\Core\Form\FormBuilderInterface $form_builder: The form builder.

\Drupal\Core\Extension\ThemeHandlerInterface $theme_handler: The theme handler.

\Drupal\Core\Menu\MenuLinkTreeInterface $menu_link_tree: The menu link tree service.

\Drupal\Core\Extension\ModuleExtensionList $module_extension_list: The module extension list.

File

core/modules/system/src/Controller/SystemController.php, line 86

Class

SystemController
Returns responses for System routes.

Namespace

Drupal\system\Controller

Code

public function __construct(SystemManager $systemManager, ThemeAccessCheck $theme_access, FormBuilderInterface $form_builder, ThemeHandlerInterface $theme_handler, MenuLinkTreeInterface $menu_link_tree, ModuleExtensionList $module_extension_list = NULL) {
    $this->systemManager = $systemManager;
    $this->themeAccess = $theme_access;
    $this->formBuilder = $form_builder;
    $this->themeHandler = $theme_handler;
    $this->menuLinkTree = $menu_link_tree;
    if ($module_extension_list === NULL) {
        @trigger_error('The extension.list.module service must be passed to ' . __NAMESPACE__ . '\\SystemController::__construct. It was added in Drupal 8.9.0 and will be required before Drupal 10.0.0.', E_USER_DEPRECATED);
        $module_extension_list = \Drupal::service('extension.list.module');
    }
    $this->moduleExtensionList = $module_extension_list;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.