bbb_node.routing.yml in BigBlueButton 8
modules/bbb_node/bbb_node.routing.yml
5 string references to YAML keys in bbb_node.routing.yml
- BBBMeetingTypeController::attend in modules/
bbb_node/ src/ Controller/ BBBMeetingTypeController.php - Redirect to big blue button instance; Menu callback
- BBBNodeTypeDeleteForm::getCancelUrl in modules/
bbb_node/ src/ Form/ BBBNodeTypeDeleteForm.php - Returns the route to go to if the user cancels the action.
- BBBNodeTypeDeleteForm::submitForm in modules/
bbb_node/ src/ Form/ BBBNodeTypeDeleteForm.php - This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state…
- BBBNodeTypeFormController::saveEntity in modules/
bbb_node/ src/ Form/ BBBNodeTypeFormController.php - bbb_menu in modules/
bbb_node/ bbb_node.module - Implement HOOK_menu().
File
modules/bbb_node/bbb_node.routing.ymlView source
- bbb_node.admin:
- path: '/admin/config/media/bigbluebutton/node'
- defaults:
- _form: '\Drupal\bbb_node\Form\SettingsForm'
- _title: 'BigBlueButton meetings'
- requirements:
- _permission: 'administer big blue button'
- entity.bbb_node_type.collection:
- path: '/admin/structure/bigbluebutton'
- defaults:
- _entity_list: bbb_node_type
- _title: 'BigBlueButton content types'
- requirements:
- _permission: 'administer big blue button'
- entity.bbb_node_type.add:
- path: '/admin/structure/bigbluebutton/add'
- defaults:
- _entity_form: bbb_node_type.add
- _title: 'BigBlueButton: Configure a new content type'
- requirements:
- _permission: 'administer big blue button'
- entity.bbb_node_type.edit_form:
- path: '/admin/structure/bigbluebutton/{bbb_node_type}'
- defaults:
- _entity_form: bbb_node_type.edit
- _title: 'BigBlueButton content type settings'
- requirements:
- _permission: 'administer big blue button'
- entity.bbb_node_type.delete_form:
- path: '/admin/structure/bigbluebutton/{bbb_node_type}/delete'
- defaults:
- _entity_form: bbb_node_type.delete
- _title: 'Remove BigBlueButton Content type settings'
- requirements:
- _permission: 'administer big blue button'
- bbb_node.meeting.attend:
- path: '/node/{node}/meeting/attend'
- defaults:
- _controller: '\Drupal\bbb_node\Controller\BBBMeetingTypeController::attend'
- _title_callback: '\Drupal\bbb_node\Controller\BBBMeetingTypeController::getTitle'
- options:
- _access_mode: 'ALL'
- requirements:
- _bbb_meeting_attendee_access_check: 'TRUE'
- _entity_access: 'node.view'
- node: \d+
- bbb_node.meeting.moderate:
- path: '/node/{node}/meeting/moderate'
- defaults:
- _controller: '\Drupal\bbb_node\Controller\BBBMeetingTypeController::moderate'
- _title_callback: '\Drupal\bbb_node\Controller\BBBMeetingTypeController::getTitle'
- options:
- _access_mode: 'ALL'
- requirements:
- _bbb_meeting_moderator_access_check: 'TRUE'
- _entity_access: 'node.view'
- node: \d+
- bbb_node.meeting.redirect:
- path: '/node/{node}/redirect/{mode}'
- defaults:
- _controller: '\Drupal\bbb_node\Controller\BBBMeetingTypeController::attendRedirect'
- options:
- _access_mode: 'ALL'
- requirements:
- _bbb_meeting_moderator_access_check: 'TRUE'
- _entity_access: 'node.view'
- node: \d+
- mode: \s+
- bbb_node.meeting.end_meeting_confirm_form:
- path: '/meeting/end-confirm/{node}'
- defaults:
- _form: '\Drupal\bbb_node\Form\EndMeetingConfirmForm'
- # options:
- # _access_mode: 'ALL'
- requirements:
- # _bbb_meeting_moderator_access_check: 'TRUE'
- # _entity_access: 'node.view'
- node: \d+
- bbb_node.meeting.end_status:
- path: '/node/{node}/meeting/status'
- defaults:
- _controller: '\Drupal\bbb_node\Controller\BBBMeetingTypeController::status'
- options:
- _access_mode: 'ALL'
- requirements:
- _bbb_meeting_attendee_access_check: 'TRUE'
- _entity_access: 'node.view'
- node: \d+