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. Drupal\path_alias\AliasManagerInterface: '@path_alias.manager'
  15. path_alias.repository:
  16. class: Drupal\path_alias\AliasRepository
  17. tags:
  18. - { name: backend_overridable }
  19. Drupal\path_alias\AliasRepositoryInterface: '@path_alias.repository'
  20. path_alias.prefix_list:
  21. class: Drupal\path_alias\AliasPrefixList
  22. tags:
  23. - { name: needs_destruction }
  24. arguments: [path_alias_prefix_list, '@cache.bootstrap', '@lock', '@state', '@path_alias.repository']
  25. Drupal\path_alias\AliasPrefixListInterface: '@path_alias.prefix_list'
  26. Drupal\path_alias\AliasPathMatcher:
  27. public: false
  28. 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.