forked from Blanca-Esqueda/content_sync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
content_sync.routing.yml
executable file
·109 lines (97 loc) · 3.19 KB
/
content_sync.routing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
content.sync:
path: '/admin/config/development/content'
defaults:
_title: 'Synchronize'
_form: '\Drupal\content_sync\Form\ContentSync'
requirements:
_permission: 'synchronize content'
content.diff:
path: '/admin/config/development/content/sync/diff/{source_name}/{target_name}'
defaults:
_controller: '\Drupal\content_sync\Controller\ContentController::diff'
target_name: NULL
requirements:
_permission: 'synchronize content'
content.diff_collection:
path: '/admin/config/development/content/sync/diff_collection/{collection}/{source_name}/{target_name}'
defaults:
_controller: '\Drupal\content_sync\Controller\ContentController::diff'
target_name: NULL
requirements:
_permission: 'synchronize content'
content.import_single:
path: '/admin/config/development/content/import/single'
defaults:
_title: 'Single Import'
_form: '\Drupal\content_sync\Form\ContentSingleImportForm'
requirements:
_permission: 'import content'
content.import_full:
path: '/admin/config/development/content/import/full'
defaults:
_title: 'Import Archives'
_form: '\Drupal\content_sync\Form\ContentImportForm'
requirements:
_permission: 'import content'
content.export_full:
path: '/admin/config/development/content/export/full'
defaults:
_title: 'Export Archives'
_form: '\Drupal\content_sync\Form\ContentExportForm'
requirements:
_permission: 'export content'
content.export_download:
path: '/admin/config/development/content/export/download'
defaults:
_controller: '\Drupal\content_sync\Controller\ContentController::downloadExport'
requirements:
_permission: 'export content'
content.export_single:
path: '/admin/config/development/content/export/single'
defaults:
_title: 'Single Export'
_form: '\Drupal\content_sync\Form\ContentSingleExportForm'
config_type: NULL
config_name: NULL
requirements:
_permission: 'export content'
content.export_multiple_confirm:
path: '/admin/config/development/content/export/confirm'
defaults:
_form: '\Drupal\content_sync\Form\ContentExportMultiple'
_title: 'Content export'
requirements:
_permission: 'export content'
options:
_admin_route: TRUE
content.overview:
path: '/admin/config/development/content/logs'
defaults:
_controller: '\Drupal\content_sync\Controller\ContentLogController::overview'
_title: 'Recent log messages'
requirements:
_permission: 'logs content'
content.settings:
path: '/admin/config/development/content/settings'
defaults:
_title: 'Settings'
_form: '\Drupal\content_sync\Form\ContentSettingsForm'
requirements:
_permission: 'synchronize content'
options:
_admin_route: TRUE
content.help.about:
path: '/admin/help/content_sync/about'
defaults:
_controller: '\Drupal\content_sync\Controller\ContentHelpController::about'
_title: 'How can we help you?'
requirements:
_permission: 'access administration pages'
content_sync.element.message.close:
path: '/content_sync/message/close/{storage}/{id}'
defaults:
_controller: '\Drupal\content_sync\Controller\ContentElementController::close'
_storage: user
requirements:
_user_is_logged_in: 'TRUE'
_csrf_token: 'TRUE'