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