annotate core/modules/taxonomy/taxonomy.routing.yml @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 1fec387a4317
children
rev   line source
Chris@0 1 entity.taxonomy_term.add_form:
Chris@0 2 path: '/admin/structure/taxonomy/manage/{taxonomy_vocabulary}/add'
Chris@0 3 defaults:
Chris@0 4 _controller: '\Drupal\taxonomy\Controller\TaxonomyController::addForm'
Chris@0 5 _title: 'Add term'
Chris@0 6 requirements:
Chris@0 7 _entity_create_access: 'taxonomy_term:{taxonomy_vocabulary}'
Chris@0 8
Chris@0 9 entity.taxonomy_term.edit_form:
Chris@0 10 path: '/taxonomy/term/{taxonomy_term}/edit'
Chris@0 11 defaults:
Chris@0 12 _entity_form: 'taxonomy_term.default'
Chris@0 13 _title: 'Edit term'
Chris@0 14 options:
Chris@0 15 _admin_route: TRUE
Chris@0 16 requirements:
Chris@0 17 _entity_access: 'taxonomy_term.update'
Chris@0 18 taxonomy_term: \d+
Chris@0 19
Chris@0 20 entity.taxonomy_term.delete_form:
Chris@0 21 path: '/taxonomy/term/{taxonomy_term}/delete'
Chris@0 22 defaults:
Chris@0 23 _entity_form: 'taxonomy_term.delete'
Chris@0 24 _title: 'Delete term'
Chris@0 25 options:
Chris@0 26 _admin_route: TRUE
Chris@0 27 requirements:
Chris@0 28 _entity_access: 'taxonomy_term.delete'
Chris@0 29 taxonomy_term: \d+
Chris@0 30
Chris@0 31 entity.taxonomy_term.canonical:
Chris@0 32 path: '/taxonomy/term/{taxonomy_term}'
Chris@0 33 defaults:
Chris@0 34 _entity_view: 'taxonomy_term.full'
Chris@0 35 _title: 'Taxonomy term'
Chris@0 36 _title_callback: '\Drupal\taxonomy\Controller\TaxonomyController::termTitle'
Chris@0 37 requirements:
Chris@0 38 _entity_access: 'taxonomy_term.view'
Chris@0 39 taxonomy_term: \d+