xmlrpc_example.routing.yml in xmlrpc 8
xmlrpc_example/xmlrpc_example.routing.yml
9 string references to YAML keys in xmlrpc_example.routing.yml
- XmlRpcExampleAlterForm::buildForm in xmlrpc_example/
src/ Form/ XmlRpcExampleAlterForm.php - Form constructor.
- XmlRpcExampleAlterForm::getEditableConfigNames in xmlrpc_example/
src/ Form/ XmlRpcExampleAlterForm.php - Gets the configuration names that will be editable.
- XmlRpcExampleClientForm::buildForm in xmlrpc_example/
src/ Form/ XmlRpcExampleClientForm.php - Form constructor.
- XmlRpcExampleController::info in xmlrpc_example/
src/ Controller/ XmlRpcExampleController.php - Constructs a page with info about the XML-RPC example.
- XmlRpcExampleServerForm::buildForm in xmlrpc_example/
src/ Form/ XmlRpcExampleServerForm.php - Form constructor.
File
xmlrpc_example/xmlrpc_example.routing.ymlView source
- # Menu items corresponding to these URLs are defined separately in the hook_menu
- # implementation of this module.
- # @see xmlrpc_example_menu()
-
- xmlrpc_example.info:
- path: 'xmlrpc_example'
- defaults:
- _controller: '\Drupal\xmlrpc_example\Controller\XmlRpcExampleController::info'
- _title: 'XML-RPC Example'
- requirements:
- # XML-RPC is by design open to the world, and using its own access control.
- _access: 'TRUE'
-
- xmlrpc_example.server:
- path: 'xmlrpc_example/server'
- defaults:
- _form: '\Drupal\xmlrpc_example\Form\XmlRpcExampleServerForm'
- _title: 'XML-RPC Server configuration'
- requirements:
- # XML-RPC is by design open to the world, and using its own access control.
- _access: 'TRUE'
-
- xmlrpc_example.client:
- path: 'xmlrpc_example/client'
- defaults:
- _form: '\Drupal\xmlrpc_example\Form\XmlRpcExampleClientForm'
- _title: 'XML-RPC Client form'
- requirements:
- # XML-RPC is by design open to the world, and using its own access control.
- _access: 'TRUE'
-
- xmlrpc_example.alter:
- path: 'xmlrpc_example/alter'
- defaults:
- _form: '\Drupal\xmlrpc_example\Form\XmlRpcExampleAlterForm'
- _title: 'XML-RPC Alterations'
- requirements:
- # XML-RPC is by design open to the world, and using its own access control.
- _access: 'TRUE'