path_alias.services.yml

Same filename and directory in other branches
  1. 11.x core/modules/path_alias/path_alias.services.yml
  2. 10 core/modules/path_alias/path_alias.services.yml
  3. 9 core/modules/path_alias/path_alias.services.yml
  4. 8.9.x core/modules/path_alias/path_alias.services.yml
core/modules/path_alias/path_alias.services.yml

File

core/modules/path_alias/path_alias.services.yml

View source
  1. parameters:
  2. path_alias.skip_procedural_hook_scan: true
  3. services:
  4. _defaults:
  5. autoconfigure: true
  6. autowire: true
  7. path_alias.path_processor:
  8. class: Drupal\path_alias\PathProcessor\AliasPathProcessor
  9. tags:
  10. - { name: path_processor_inbound, priority: 100 }
  11. - { name: path_processor_outbound, priority: 300 }
  12. path_alias.manager:
  13. class: Drupal\path_alias\AliasManager
  14. arguments: ['@path_alias.repository', '@path_alias.prefix_list', '@language_manager', '@cache.data', '@datetime.time']
  15. Drupal\path_alias\AliasManagerInterface: '@path_alias.manager'
  16. path_alias.repository:
  17. class: Drupal\path_alias\AliasRepository
  18. tags:
  19. - { name: backend_overridable }
  20. Drupal\path_alias\AliasRepositoryInterface: '@path_alias.repository'
  21. path_alias.prefix_list:
  22. class: Drupal\path_alias\AliasPrefixList
  23. tags:
  24. - { name: needs_destruction }
  25. arguments: [path_alias_prefix_list, '@cache.bootstrap', '@lock', '@state', '@path_alias.repository']
  26. Drupal\path_alias\AliasPrefixListInterface: '@path_alias.prefix_list'
  27. Drupal\path_alias\AliasPathMatcher:
  28. public: false
  29. decorates: path.matcher

Services

Title Deprecated Summary
Drupal\path_alias\AliasPathMatcher
path_alias.manager Drupal\path_alias\AliasManager
path_alias.path_processor Drupal\path_alias\PathProcessor\AliasPathProcessor
path_alias.prefix_list Drupal\path_alias\AliasPrefixList
path_alias.repository Drupal\path_alias\AliasRepository
_defaults

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