update.services.yml

Same filename in other branches
  1. 9 core/modules/update/update.services.yml
  2. 8.9.x core/modules/update/update.services.yml
  3. 10 core/modules/update/update.services.yml
core/modules/update/update.services.yml

File

core/modules/update/update.services.yml

View source
  1. services:
  2. _defaults:
  3. autoconfigure: true
  4. access_check.update.manager_access:
  5. class: Drupal\update\Access\UpdateManagerAccessCheck
  6. arguments: ['@settings']
  7. tags:
  8. - { name: access_check, applies_to: _access_update_manager }
  9. update.manager:
  10. class: Drupal\update\UpdateManager
  11. arguments: ['@config.factory', '@module_handler', '@update.processor', '@string_translation', '@keyvalue.expirable', '@theme_handler', '@extension.list.module', '@extension.list.theme']
  12. Drupal\update\UpdateManagerInterface: '@update.manager'
  13. update.processor:
  14. class: Drupal\update\UpdateProcessor
  15. arguments: ['@config.factory', '@queue', '@update.fetcher', '@state', '@private_key', '@keyvalue', '@keyvalue.expirable', '@datetime.time']
  16. Drupal\update\UpdateProcessorInterface: '@update.processor'
  17. update.fetcher:
  18. class: Drupal\update\UpdateFetcher
  19. arguments: ['@config.factory', '@http_client', '@settings', '@logger.channel.update']
  20. Drupal\update\UpdateFetcherInterface: '@update.fetcher'
  21. update.root:
  22. class: Drupal\update\UpdateRoot
  23. arguments: ['@kernel', '@request_stack']
  24. logger.channel.update:
  25. parent: logger.channel_base
  26. arguments: [ 'update' ]
  27. update.route_subscriber:
  28. class: Drupal\update\Routing\UpdateRouteSubscriber
  29. arguments: ['@settings']

Services

Title Deprecated Summary
access_check.update.manager_access Drupal\update\Access\UpdateManagerAccessCheck
Drupal\update\UpdateFetcherInterface
Drupal\update\UpdateManagerInterface
Drupal\update\UpdateProcessorInterface
logger.channel.update
update.fetcher Drupal\update\UpdateFetcher
update.manager Drupal\update\UpdateManager
update.processor Drupal\update\UpdateProcessor
update.root Drupal\update\UpdateRoot
update.route_subscriber Drupal\update\Routing\UpdateRouteSubscriber
_defaults

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