webform_devel.routing.yml in Webform 6.x
Same filename and directory in other branches
modules/webform_devel/webform_devel.routing.yml
4 string references to YAML keys in webform_devel.routing.yml
- WebformDevelEntityFormApiExportForm::buildForm in modules/
webform_devel/ src/ Form/ WebformDevelEntityFormApiExportForm.php - Form constructor.
- WebformDevelEntitySchemaForm::submitForm in modules/
webform_devel/ src/ Form/ WebformDevelEntitySchemaForm.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…
- WebformHelpManager::initHelp in src/
WebformHelpManager.php - Initialize help.
- webform_devel_webform_help_info in modules/
webform_devel/ webform_devel.module - Implements hook_webform_help_info().
File
modules/webform_devel/webform_devel.routing.ymlView source
- entity.webform.schema_form:
- path: '/admin/structure/webform/manage/{webform}/schema'
- defaults:
- _entity_form: 'webform.schema'
- _title_callback: '\Drupal\webform\Controller\WebformEntityController::title'
- requirements:
- _permission: 'access devel information'
-
- webform_devel.schema.export:
- path: '/admin/structure/webform/manage/{webform}/schema/export'
- defaults:
- _controller: '\Drupal\webform_devel\Controller\WebformDevelSchemaController::index'
- requirements:
- _permission: 'access devel information'
-
- entity.webform.fapi_export_form:
- path: '/admin/structure/webform/manage/{webform}/fapi'
- defaults:
- _entity_form: 'webform.fapi_export'
- _title_callback: '\Drupal\webform\Controller\WebformEntityController::title'
- requirements:
- _permission: 'access devel information'
-
- entity.webform.fapi_test_form:
- path: '/admin/structure/webform/manage/{webform}/fapi/test'
- defaults:
- _entity_form: 'webform.fapi_test'
- _title_callback: '\Drupal\webform\Controller\WebformEntityController::title'
- requirements:
- _permission: 'access devel information'
-
- entity.webform.api_form:
- path: '/webform/{webform}/api'
- defaults:
- _form: '\Drupal\webform_devel\Form\WebformDevelSubmissionApiForm'
- _title_callback: '\Drupal\webform\Controller\WebformTestController::title'
- options:
- parameters:
- webform:
- type: 'entity:webform'
- _admin_route: TRUE
- requirements:
- _entity_access: 'webform.update'
- _permission: 'access devel information'
-
- entity.node.webform.api_form:
- path: '/node/{node}/webform/api'
- defaults:
- _form: '\Drupal\webform_devel\Form\WebformDevelSubmissionApiForm'
- _title_callback: '\Drupal\Core\Entity\Controller\EntityController::title'
- operation: webform_submission_view
- entity_access: 'webform.update'
- options:
- parameters:
- node:
- type: 'entity:node'
- _admin_route: TRUE
- requirements:
- _permission: 'access devel information'
- _custom_access: '\Drupal\webform_node\Access\WebformNodeAccess::checkWebformAccess'