You are here

xmlrpc_example.routing.yml in xmlrpc 8

xmlrpc_example/xmlrpc_example.routing.yml

File

xmlrpc_example/xmlrpc_example.routing.yml
View source
  1. # Menu items corresponding to these URLs are defined separately in the hook_menu
  2. # implementation of this module.
  3. # @see xmlrpc_example_menu()
  4. xmlrpc_example.info:
  5. path: 'xmlrpc_example'
  6. defaults:
  7. _controller: '\Drupal\xmlrpc_example\Controller\XmlRpcExampleController::info'
  8. _title: 'XML-RPC Example'
  9. requirements:
  10. # XML-RPC is by design open to the world, and using its own access control.
  11. _access: 'TRUE'
  12. xmlrpc_example.server:
  13. path: 'xmlrpc_example/server'
  14. defaults:
  15. _form: '\Drupal\xmlrpc_example\Form\XmlRpcExampleServerForm'
  16. _title: 'XML-RPC Server configuration'
  17. requirements:
  18. # XML-RPC is by design open to the world, and using its own access control.
  19. _access: 'TRUE'
  20. xmlrpc_example.client:
  21. path: 'xmlrpc_example/client'
  22. defaults:
  23. _form: '\Drupal\xmlrpc_example\Form\XmlRpcExampleClientForm'
  24. _title: 'XML-RPC Client form'
  25. requirements:
  26. # XML-RPC is by design open to the world, and using its own access control.
  27. _access: 'TRUE'
  28. xmlrpc_example.alter:
  29. path: 'xmlrpc_example/alter'
  30. defaults:
  31. _form: '\Drupal\xmlrpc_example\Form\XmlRpcExampleAlterForm'
  32. _title: 'XML-RPC Alterations'
  33. requirements:
  34. # XML-RPC is by design open to the world, and using its own access control.
  35. _access: 'TRUE'