You are here

public function UpdateManagerUpdate::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/update/src/Form/UpdateManagerUpdate.php \Drupal\update\Form\UpdateManagerUpdate::__construct()
  2. 10 core/modules/update/src/Form/UpdateManagerUpdate.php \Drupal\update\Form\UpdateManagerUpdate::__construct()

Constructs a new UpdateManagerUpdate object.

Parameters

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.

\Drupal\Core\State\StateInterface $state: The state service.

File

core/modules/update/src/Form/UpdateManagerUpdate.php, line 47

Class

UpdateManagerUpdate
Configure update settings for this site.

Namespace

Drupal\update\Form

Code

public function __construct(ModuleHandlerInterface $module_handler, StateInterface $state) {
  $this->moduleHandler = $module_handler;
  $this->state = $state;
}