function UpdateController::__construct
Same name in other branches
- 8.9.x core/modules/update/src/Controller/UpdateController.php \Drupal\update\Controller\UpdateController::__construct()
- 10 core/modules/update/src/Controller/UpdateController.php \Drupal\update\Controller\UpdateController::__construct()
- 11.x core/modules/update/src/Controller/UpdateController.php \Drupal\update\Controller\UpdateController::__construct()
Constructs update status data.
Parameters
\Drupal\update\UpdateManagerInterface $update_manager: Update Manager Service.
\Drupal\Core\Render\RendererInterface|null $renderer: The renderer.
File
-
core/
modules/ update/ src/ Controller/ UpdateController.php, line 39
Class
- UpdateController
- Controller routines for update routes.
Namespace
Drupal\update\ControllerCode
public function __construct(UpdateManagerInterface $update_manager, RendererInterface $renderer = NULL) {
$this->updateManager = $update_manager;
if (is_null($renderer)) {
@trigger_error('The renderer service should be passed to UpdateController::__construct() since 9.1.0. This will be required in Drupal 10.0.0. See https://www.drupal.org/node/3179315', E_USER_DEPRECATED);
$renderer = \Drupal::service('renderer');
}
$this->renderer = $renderer;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.