public DbUpdateController::__construct($root, KeyValueExpirableFactoryInterface $key_value_expirable_factory, CacheBackendInterface $cache, StateInterface $state, ModuleHandlerInterface $module_handler, AccountInterface $account, BareHtmlPageRendererInterface $bare_html_page_renderer, UpdateRegistry $post_update_registry)
Constructs a new UpdateController.
Parameters
string $root: The app root.
\Drupal\Core\KeyValueStore\KeyValueExpirableFactoryInterface $key_value_expirable_factory: The keyvalue expirable factory.
\Drupal\Core\Cache\CacheBackendInterface $cache: A cache backend interface.
\Drupal\Core\State\StateInterface $state: The state service.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.
\Drupal\Core\Session\AccountInterface $account: The current user.
\Drupal\Core\Render\BareHtmlPageRendererInterface $bare_html_page_renderer: The bare HTML page renderer.
\Drupal\Core\Update\UpdateRegistry $post_update_registry: The post update registry.
File
- core/modules/system/src/Controller/DbUpdateController.php, line 100
Class
- DbUpdateController
- Controller routines for database update routes.
Namespace
Drupal\system\Controller
Code
1 2 3 4 5 6 7 8 9 10 | public function __construct( $root , KeyValueExpirableFactoryInterface $key_value_expirable_factory , CacheBackendInterface $cache , StateInterface $state , ModuleHandlerInterface $module_handler , AccountInterface $account , BareHtmlPageRendererInterface $bare_html_page_renderer , UpdateRegistry $post_update_registry ) { $this ->root = $root ; $this ->keyValueExpirableFactory = $key_value_expirable_factory ; $this ->cache = $cache ; $this ->state = $state ; $this ->moduleHandler = $module_handler ; $this ->account = $account ; $this ->bareHtmlPageRenderer = $bare_html_page_renderer ; $this ->postUpdateRegistry = $post_update_registry ; } |
Please login to continue.