Skip to content
Snippets Groups Projects
Select Git revision
  • c2b77b0c9359127b51c52eea8af3fce5a7ad3de3
  • 11.x default protected
  • 11.2.x protected
  • 10.5.x protected
  • 10.6.x protected
  • 11.1.x protected
  • 10.4.x protected
  • 11.0.x protected
  • 10.3.x protected
  • 7.x protected
  • 10.2.x protected
  • 10.1.x protected
  • 9.5.x protected
  • 10.0.x protected
  • 9.4.x protected
  • 9.3.x protected
  • 9.2.x protected
  • 9.1.x protected
  • 8.9.x protected
  • 9.0.x protected
  • 8.8.x protected
  • 10.5.1 protected
  • 11.2.2 protected
  • 11.2.1 protected
  • 11.2.0 protected
  • 10.5.0 protected
  • 11.2.0-rc2 protected
  • 10.5.0-rc1 protected
  • 11.2.0-rc1 protected
  • 10.4.8 protected
  • 11.1.8 protected
  • 10.5.0-beta1 protected
  • 11.2.0-beta1 protected
  • 11.2.0-alpha1 protected
  • 10.4.7 protected
  • 11.1.7 protected
  • 10.4.6 protected
  • 11.1.6 protected
  • 10.3.14 protected
  • 10.4.5 protected
  • 11.0.13 protected
41 results

forum.routing.yml

Blame
  • Nathaniel Catchpole's avatar
    Issue #2376791 by dawehner, Wim Leers: Move all _content routing definitions to _controller
    catch authored
    edd78896
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    forum.routing.yml 1.94 KiB
    entity.taxonomy_term.forum_delete_form:
      path: '/admin/structure/forum/delete/forum/{taxonomy_term}'
      defaults:
        _form: '\Drupal\forum\Form\DeleteForm'
        _title: 'Delete forum'
      requirements:
        _permission: 'administer forums'
    
    forum.settings:
      path: '/admin/structure/forum/settings'
      defaults:
        _form: '\Drupal\forum\ForumSettingsForm'
        _title: 'Forums'
      requirements:
        _permission: 'administer forums'
    
    forum.index:
      path: '/forum'
      defaults:
        _controller: '\Drupal\forum\Controller\ForumController::forumIndex'
        _title: 'Forums'
      requirements:
        _permission: 'access content'
    
    forum.page:
      path: '/forum/{taxonomy_term}'
      defaults:
        _controller: '\Drupal\forum\Controller\ForumController::forumPage'
        _title_callback: '\Drupal\taxonomy\Controller\TaxonomyController::termTitle'
      requirements:
        _permission: 'access content'
    
    forum.add_container:
      path: '/admin/structure/forum/add/container'
      defaults:
        _controller: '\Drupal\forum\Controller\ForumController::addContainer'
        _title: 'Add container'
      requirements:
        _permission: 'administer forums'
    
    forum.add_forum:
      path: '/admin/structure/forum/add/forum'
      defaults:
        _controller: '\Drupal\forum\Controller\ForumController::addForum'
        _title: 'Add forum'
      requirements:
        _permission: 'administer forums'
    
    entity.taxonomy_term.forum_edit_container_form:
      path: '/admin/structure/forum/edit/container/{taxonomy_term}'
      defaults:
        _entity_form: 'taxonomy_term.container'
        _title: 'Edit container'
      requirements:
        _permission: 'administer forums'
    
    entity.taxonomy_term.forum_edit_form:
      path: '/admin/structure/forum/edit/forum/{taxonomy_term}'
      defaults:
        _entity_form: 'taxonomy_term.forum'
        _title: 'Edit forum'
      requirements:
        _permission: 'administer forums'
    
    forum.overview:
      path: '/admin/structure/forum'
      defaults:
        _form: '\Drupal\forum\Form\Overview'
        _title: 'Forums'
      requirements: