mentions.routing.yml in Open Social 8
Same filename and directory in other branches
- 8.9 modules/custom/mentions/mentions.routing.yml
- 8.2 modules/custom/mentions/mentions.routing.yml
- 8.3 modules/custom/mentions/mentions.routing.yml
- 8.4 modules/custom/mentions/mentions.routing.yml
- 8.5 modules/custom/mentions/mentions.routing.yml
- 8.6 modules/custom/mentions/mentions.routing.yml
- 8.7 modules/custom/mentions/mentions.routing.yml
- 8.8 modules/custom/mentions/mentions.routing.yml
- 10.3.x modules/custom/mentions/mentions.routing.yml
- 10.0.x modules/custom/mentions/mentions.routing.yml
- 10.1.x modules/custom/mentions/mentions.routing.yml
- 10.2.x modules/custom/mentions/mentions.routing.yml
modules/custom/mentions/mentions.routing.yml
15 string references to YAML keys in mentions.routing.yml
- AutocompleteController::suggestions in modules/
social_features/ social_mentions/ src/ Controller/ AutocompleteController.php - Function for suggestions.
- MentionsSettingsForm::buildForm in modules/
custom/ mentions/ src/ Form/ MentionsSettingsForm.php - Form constructor.
- MentionsSettingsForm::getEditableConfigNames in modules/
custom/ mentions/ src/ Form/ MentionsSettingsForm.php - Gets the configuration names that will be editable.
- MentionsSettingsForm::submitForm in modules/
custom/ mentions/ src/ Form/ MentionsSettingsForm.php - Form submission handler.
- MentionsTypeDeleteForm::getCancelUrl in modules/
custom/ mentions/ src/ Form/ MentionsTypeDeleteForm.php
File
modules/custom/mentions/mentions.routing.ymlView source
- entity.mentions_type.list:
- path: '/admin/structure/mentions'
- defaults:
- _entity_list: 'mentions_type'
- _title: 'Mentions Type'
- requirements:
- _permission: 'administer mentions'
-
- entity.mentions_type.add_form:
- path: '/admin/structure/mentions/add'
- defaults:
- _title: 'Mentions Type'
- _entity_form: 'mentions_type.add'
- requirements:
- _permission: 'administer mentions'
-
- entity.mentions_type.edit_form:
- path: '/admin/structure/mentions/{mentions_type}/edit'
- defaults:
- _entity_form: 'mentions_type.edit'
- _title: 'Edit Mentions Type'
- requirements:
- _permission: 'administer site configuration'
- options:
- parameters:
- mentions_type:
- type: entity:mentions_type
-
- entity.mentions_type.delete_form:
- path: '/admin/structure/mentions/{mentions_type}/delete'
- defaults:
- _entity_form: 'mentions_type.delete'
- _title: 'Delete Mentions Type'
- requirements:
- _permission: 'administer site configuration'
- options:
- parameters:
- mentions_type:
- type: entity:mentions_type
-
-
- mentions.mentions_type_form:
- path: '/admin/structure/mentions/mentionstype'
- defaults:
- _form: '\Drupal\mentions\Form\MentionsTypeForm'
- _title: 'MentionsTypeForm'
- requirements:
- _permission: 'administer site configuration'
-
-
- entity.mentions.canonical:
- path: '/mentions/{mentions}'
- defaults:
- _title: 'Mention'
- _controller: '\Drupal\mentions\MentionsController::mentionPermalink'
- requirements:
- _permission: 'access mentions'
- mentions: \d+
-
- mentions.settings:
- path: 'admin/config/people/mentions'
- defaults:
- _form: '\Drupal\mentions\Form\MentionsSettingsForm'
- _title: 'Mentions'
- requirements:
- _permission: 'administer mentions'