2013-09-21 11:42:43 +00:00
|
|
|
services:
|
|
|
|
access_check.update.manager_access:
|
|
|
|
class: Drupal\update\Access\UpdateManagerAccessCheck
|
|
|
|
arguments: ['@settings']
|
|
|
|
tags:
|
2014-01-01 00:06:09 +00:00
|
|
|
- { name: access_check, applies_to: _access_update_manager }
|
2014-01-24 20:03:38 +00:00
|
|
|
update.manager:
|
|
|
|
class: Drupal\update\UpdateManager
|
2019-06-03 11:49:38 +00:00
|
|
|
arguments: ['@config.factory', '@module_handler', '@update.processor', '@string_translation', '@keyvalue.expirable', '@theme_handler', '@extension.list.module']
|
2014-01-24 20:03:38 +00:00
|
|
|
update.processor:
|
|
|
|
class: Drupal\update\UpdateProcessor
|
|
|
|
arguments: ['@config.factory', '@queue', '@update.fetcher', '@state', '@private_key', '@keyvalue', '@keyvalue.expirable']
|
|
|
|
update.fetcher:
|
|
|
|
class: Drupal\update\UpdateFetcher
|
2014-04-15 19:12:03 +00:00
|
|
|
arguments: ['@config.factory', '@http_client']
|
Issue #2042447 by David_Rothstein, joelpittet, stefan.r, SebCorbin, mpdonadio, steinmb, webchick, Cottser, miniwebs2, Vj, Gilbert Rehling, nuwe, yched, StuartJNCC, Fabianx, yktdan, herom: Install a module user interface does not install modules (or themes)
2015-08-07 09:02:58 +00:00
|
|
|
update.root:
|
|
|
|
class: SplString
|
|
|
|
factory: update.root.factory:get
|
|
|
|
tags:
|
|
|
|
- { name: parameter_service }
|
|
|
|
update.root.factory:
|
|
|
|
class: Drupal\update\UpdateRootFactory
|
|
|
|
arguments: ['@kernel', '@request_stack']
|
|
|
|
public: false
|