-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdata_objects.yaml
More file actions
224 lines (153 loc) · 9.51 KB
/
Copy pathdata_objects.yaml
File metadata and controls
224 lines (153 loc) · 9.51 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
services:
_defaults:
autowire: true
autoconfigure: true
public: false
# controllers are imported separately to make sure they're public
# and have a tag that allows actions to type-hint services
Pimcore\Bundle\StudioBackendBundle\DataObject\Controller\:
resource: '../src/DataObject/Controller'
public: true
tags: [ 'controller.service_arguments' ]
#
# Services
#
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\ExecutionEngine\CloneServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\ExecutionEngine\CloneService
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\DataObjectServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\DataObjectService
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\ReplaceServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\ReplaceService
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\RelationNormalizationContext: ~
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\DataServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\DataService
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\InheritanceServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\InheritanceService
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\DataAdapterServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\DataAdapterService
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\DataAdapterLoaderInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\Loader\TaggedIteratorDataAdapter
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\LayoutServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\LayoutService
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\SelectOptionsServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\SelectOptionsService
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\PreviewConfigServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\PreviewConfigService
arguments:
$defaultPreviewGenerator: '@Pimcore\Bundle\StudioBackendBundle\DataObject\Legacy\PreviewGenerator'
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\PreviewUrlServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\PreviewUrlService
arguments: [ '@Pimcore\Bundle\StudioBackendBundle\DataObject\Legacy\PreviewGenerator' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\PathFormatterServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\PathFormatterService
Pimcore\Bundle\StudioBackendBundle\DataObject\Service\Data\RelationDataServiceInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Service\Data\RelationDataService
#
# Legacy Services
#
Pimcore\Bundle\StudioBackendBundle\DataObject\Legacy\ApplyChangesHelperInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Legacy\ApplyChangesHelper
Pimcore\Bundle\StudioBackendBundle\DataObject\Legacy\PreviewGenerator: ~
#
# Hydrator
#
Pimcore\Bundle\StudioBackendBundle\DataObject\Hydrator\ObjectLayoutHydratorInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Hydrator\ObjectLayoutHydrator
Pimcore\Bundle\StudioBackendBundle\DataObject\Hydrator\PreviewConfigHydratorInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Hydrator\PreviewConfigHydrator
Pimcore\Bundle\StudioBackendBundle\DataObject\Hydrator\SelectOptionHydratorInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Hydrator\SelectOptionHydrator
Pimcore\Bundle\StudioBackendBundle\DataObject\Hydrator\FormatedPathHydratorInterface:
class: Pimcore\Bundle\StudioBackendBundle\DataObject\Hydrator\FormatedPathHydrator
#
# Data Adapters
#
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\AdvancedManyToManyObjectRelationAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\AdvancedManyToManyRelationAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\BooleanAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\CalculatedValueAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ClassificationStoreAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\DateAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\DateRangeAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\GeoBoundsAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\GeoPointAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\GeoPointsAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ExternalImageAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\HotspotImageAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ImageAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ImageGalleryAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\LinkAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\LocalizedFieldsAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ManyToManyRelationAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ManyToManyObjectRelationAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ManyToOneRelationAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\MultiSelectAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\NumericAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\NumericRangeAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ObjectBricksAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ReverseObjectRelationAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\RgbaColorAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\SelectAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\SliderAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\StringAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\StructuredTableAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\TableAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\UrlSlugAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\UserAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\VideoAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\QuantityValueAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\InputQuantityValueAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\QuantityValueRangeAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\ConsentAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\EncryptedFieldAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\BlockAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
Pimcore\Bundle\StudioBackendBundle\DataObject\Data\Adapter\FieldCollectionsAdapter:
tags: [ 'pimcore.studio_backend.data_adapter' ]
#
# Handler
#
Pimcore\Bundle\StudioBackendBundle\DataObject\ExecutionEngine\AutomationAction\Messenger\Handler\CloneHandler: ~
Pimcore\Bundle\StudioBackendBundle\DataObject\ExecutionEngine\AutomationAction\Messenger\Handler\ExportDataCollectionHandler: ~
#
# Event Subscriber
#
Pimcore\Bundle\StudioBackendBundle\DataObject\EventSubscriber\CloneSubscriber: ~