You are here

batch_test.routing.yml in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/system/tests/modules/batch_test/batch_test.routing.yml
core/modules/system/tests/modules/batch_test/batch_test.routing.yml

File

core/modules/system/tests/modules/batch_test/batch_test.routing.yml
View source
  1. batch_test.redirect:
  2. path: '/batch-test/redirect'
  3. defaults:
  4. _controller: '\Drupal\batch_test\Controller\BatchTestController::testRedirect'
  5. _title: 'Redirect'
  6. requirements:
  7. _access: 'TRUE'
  8. batch_test.large_percentage:
  9. path: '/batch-test/large-percentage'
  10. defaults:
  11. _controller: '\Drupal\batch_test\Controller\BatchTestController::testLargePercentage'
  12. _title: 'Simple page with batch over 100% complete'
  13. requirements:
  14. _access: 'TRUE'
  15. batch_test.nested_programmatic:
  16. path: '/batch-test/nested-programmatic/{value}'
  17. defaults:
  18. _controller: '\Drupal\batch_test\Controller\BatchTestController::testNestedDrupalFormSubmit'
  19. _title: 'Nested programmatic'
  20. value: '1'
  21. requirements:
  22. _access: 'TRUE'
  23. batch_test.no_form:
  24. path: '/batch-test/no-form'
  25. defaults:
  26. _controller: '\Drupal\batch_test\Controller\BatchTestController::testNoForm'
  27. _title: 'Simple page'
  28. requirements:
  29. _access: 'TRUE'
  30. batch_test.finish_redirect:
  31. path: '/batch-test/finish-redirect'
  32. defaults:
  33. _controller: '\Drupal\batch_test\Controller\BatchTestController::testFinishRedirect'
  34. _title: 'Simple page with finish redirect call'
  35. requirements:
  36. _access: 'TRUE'
  37. batch_test.test_form:
  38. path: '/batch-test'
  39. defaults:
  40. _form: '\Drupal\batch_test\Form\BatchTestSimpleForm'
  41. _title: 'Batch test'
  42. requirements:
  43. _access: 'TRUE'
  44. batch_test.multistep:
  45. path: '/batch-test/multistep'
  46. defaults:
  47. _form: '\Drupal\batch_test\Form\BatchTestMultiStepForm'
  48. _title: 'Multistep'
  49. requirements:
  50. _access: 'TRUE'
  51. batch_test.chained:
  52. path: '/batch-test/chained'
  53. defaults:
  54. _form: '\Drupal\batch_test\Form\BatchTestChainedForm'
  55. _title: 'Chained'
  56. requirements:
  57. _access: 'TRUE'
  58. batch_test.programmatic:
  59. path: '/batch-test/programmatic/{value}'
  60. defaults:
  61. _controller: '\Drupal\batch_test\Controller\BatchTestController::testProgrammatic'
  62. _title: 'Programmatic'
  63. value: '1'
  64. requirements:
  65. _access: 'TRUE'
  66. batch_test.test_theme:
  67. path: '/admin/batch-test/test-theme'
  68. defaults:
  69. _controller: '\Drupal\batch_test\Controller\BatchTestController::testThemeBatch'
  70. requirements:
  71. _access: 'TRUE'
  72. batch_test.test_title:
  73. path: '/batch-test/test-title'
  74. defaults:
  75. _controller: '\Drupal\batch_test\Controller\BatchTestController::testTitleBatch'
  76. requirements:
  77. _access: 'TRUE'