Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / hacked / hacked.routing.yml
1 hacked.report:
2   path: '/admin/reports/hacked'
3   defaults:
4     _controller: '\Drupal\hacked\Controller\HackedController::hackedStatus'
5     _title: 'Hacked'
6   requirements:
7     _permission: 'administer site configuration'
8
9 hacked.settings:
10   path: '/admin/reports/hacked/settings'
11   defaults:
12     _form: 'Drupal\hacked\Form\HackedSettingsForm'
13     _title: 'Settings'
14   requirements:
15     _permission: 'administer site configuration'
16
17 hacked.manual_status:
18   path: '/admin/reports/hacked/check'
19   defaults:
20     _title: 'Manual hacked check'
21     _controller: '\Drupal\hacked\Controller\HackedController::hackedStatusManually'
22   requirements:
23     _permission: 'administer site configuration'
24
25 hacked.project:
26   path: '/admin/reports/hacked/{project}'
27   defaults:
28     _title_callback: '\Drupal\hacked\Controller\HackedController::hackedProjectTitle'
29     _controller: '\Drupal\hacked\Controller\HackedController::hackedProject'
30   requirements:
31     _permission: 'administer site configuration'
32   options:
33     parameters:
34       project:
35         type: hacked_project
36         loader: TRUE
37
38 hacked.project_diff:
39   path: '/admin/reports/hacked/{project}/diff'
40   defaults:
41     _title_callback: '\Drupal\hacked\Controller\HackedDiffController::hackedProjectDiffTitle'
42     _controller: '\Drupal\hacked\Controller\HackedDiffController::hackedProjectDiff'
43   requirements:
44     _permission: 'administer site configuration'
45     _module_dependencies: 'diff'
46   options:
47     parameters:
48       project:
49         type: hacked_project
50         loader: TRUE