Browse code

Initial commit

Benjamin Roth authored on16/03/2023 20:22:35
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,1225 @@
1
+<?php
2
+// rsce_my_element_config.php
3
+return array(
4
+    'label' => array('Custom | Zeile mit zwei Spalten & vollflächigen Bildern (twocolimagewall)', ''),
5
+    'types' => array('content'),
6
+    'contentCategory' => 'texts',
7
+    'moduleCategory' => 'miscellaneous',
8
+    'standardFields' => array('headline', 'cssID'),
9
+    'wrapper' => array(
10
+        'type' => 'none',
11
+    ),
12
+    'fields' => array(
13
+        'topline' => array(
14
+            'label' => array('Topline', 'Text oberhalb der Überschrift'),
15
+            'inputType' => 'text',
16
+        ), 'subline' => array(
17
+            'label' => array('Subline', 'Text unterhalb der Überschrift'),
18
+            'inputType' => 'text',
19
+        ),
20
+        'animation_type' => array(
21
+            'label' => array(
22
+                'de' => array('Art der Einblendeanimation', 'Siehe https://animate.style/ für Beispiele'),
23
+            ),
24
+            'inputType' => 'select',
25
+            'options' => array(
26
+                /* Fading entrances  */
27
+                'animate__fadeInUp' => 'fadeInUp (Meistens Standard)',
28
+                'no-animation' => 'Keine Animation',
29
+                'animate__fadeIn' => 'fadeIn',
30
+                'animate__fadeInDown' => 'fadeInDown',
31
+                'animate__fadeInDownBig' => 'fadeInDownBig',
32
+                'animate__fadeInLeft' => 'fadeInLeft',
33
+                'animate__fadeInLeftBig' => 'fadeInLeftBig',
34
+                'animate__fadeInRight' => 'fadeInRight',
35
+                'animate__fadeInRightBig' => 'fadeInRightBig',
36
+                'animate__fadeInUpBig' => 'fadeInUpBig',
37
+                'animate__fadeInTopLeft' => 'fadeInTopLeft',
38
+                'animate__fadeInTopRight' => 'fadeInTopRight',
39
+                'animate__fadeInBottomLeft' => 'fadeInBottomLeft',
40
+                'animate__fadeInBottomRight' => 'fadeInBottomRight',
41
+                /* Attention seekers  */
42
+                'animate__bounce' => 'bounce',
43
+                'animate__flash' => 'flash',
44
+                'animate__pulse' => 'pulse',
45
+                'animate__rubberBand' => 'rubberBand',
46
+                'animate__shakeX' => 'shakeX',
47
+                'animate__shakeY' => 'shakeY',
48
+                'animate__headShake' => 'headShake',
49
+                'animate__swing' => 'swing',
50
+                'animate__tada' => 'tada',
51
+                'animate__wobble' => 'wobble',
52
+                'animate__jello' => 'jello',
53
+                'animate__heartBeat' => 'heartBeat',
54
+                /* Back entrances */
55
+                'animate__backInDown' => 'backInDown',
56
+                'animate__backInLeft' => 'backInLeft',
57
+                'animate__backInRight' => 'backInRight',
58
+                'animate__backInUp' => 'backInUp',
59
+                /* Back exits */
60
+                'animate__backOutDown' => 'backOutDown',
61
+                'animate__backOutLeft' => 'backOutLeft',
62
+                'animate__backOutRight' => 'backOutRight',
63
+                'animate__backOutUp' => 'backOutUp',
64
+                /* Bouncing entrances  */
65
+                'animate__bounceIn' => 'bounceIn',
66
+                'animate__bounceInDown' => 'bounceInDown',
67
+                'animate__bounceInLeft' => 'bounceInLeft',
68
+                'animate__bounceInRight' => 'bounceInRight',
69
+                'animate__bounceInUp' => 'bounceInUp',
70
+                /* Bouncing exits  */
71
+                'animate__bounceOut' => 'bounceOut',
72
+                'animate__bounceOutDown' => 'bounceOutDown',
73
+                'animate__bounceOutLeft' => 'bounceOutLeft',
74
+                'animate__bounceOutRight' => 'bounceOutRight',
75
+                'animate__bounceOutUp' => 'bounceOutUp',
76
+                /* Fading exits */
77
+                'animate__fadeOut' => 'fadeOut',
78
+                'animate__fadeOutDown' => 'fadeOutDown',
79
+                'animate__fadeOutDownBig' => 'fadeOutDownBig',
80
+                'animate__fadeOutLeft' => 'fadeOutLeft',
81
+                'animate__fadeOutLeftBig' => 'fadeOutLeftBig',
82
+                'animate__fadeOutRight' => 'fadeOutRight',
83
+                'animate__fadeOutRightBig' => 'fadeOutRightBig',
84
+                'animate__fadeOutUp' => 'fadeOutUp',
85
+                'animate__fadeOutUpBig' => 'fadeOutUpBig',
86
+                'animate__fadeOutTopLeft' => 'fadeOutTopLeft',
87
+                'animate__fadeOutTopRight' => 'fadeOutTopRight',
88
+                'animate__fadeOutBottomRight' => 'fadeOutBottomRight',
89
+                'animate__fadeOutBottomLeft' => 'fadeOutBottomLeft',
90
+                /* Flippers */
91
+                'animate__flip' => 'flip',
92
+                'animate__flipInX' => 'flipInX',
93
+                'animate__flipInY' => 'flipInY',
94
+                'animate__flipOutX' => 'flipOutX',
95
+                'animate__flipOutY' => 'flipOutY',
96
+                /* Lightspeed */
97
+                'animate__lightSpeedInRight' => 'lightSpeedInRight',
98
+                'animate__lightSpeedInLeft' => 'lightSpeedInLeft',
99
+                'animate__lightSpeedOutRight' => 'lightSpeedOutRight',
100
+                'animate__lightSpeedOutLeft' => 'lightSpeedOutLeft',
101
+                /* Rotating entrances */
102
+                'animate__rotateIn' => 'rotateIn',
103
+                'animate__rotateInDownLeft' => 'rotateInDownLeft',
104
+                'animate__rotateInDownRight' => 'rotateInDownRight',
105
+                'animate__rotateInUpLeft' => 'rotateInUpLeft',
106
+                'animate__rotateInUpRight' => 'rotateInUpRight',
107
+                /* Rotating exits */
108
+                'animate__rotateOut' => 'rotateOut',
109
+                'animate__rotateOutDownLeft' => 'rotateOutDownLeft',
110
+                'animate__rotateOutDownRight' => 'rotateOutDownRight',
111
+                'animate__rotateOutUpLeft' => 'rotateOutUpLeft',
112
+                'animate__rotateOutUpRight' => 'rotateOutUpRight',
113
+                /* Specials */
114
+                'animate__hinge' => 'hinge',
115
+                'animate__jackInTheBox' => 'jackInTheBox',
116
+                'animate__rollIn' => 'rollIn',
117
+                'animate__rollOut' => 'rollOut',
118
+                /* Zooming entrances */
119
+                'animate__zoomIn' => 'zoomIn',
120
+                'animate__zoomInDown' => 'zoomInDown',
121
+                'animate__zoomInLeft' => 'zoomInLeft',
122
+                'animate__zoomInRight' => 'zoomInRight',
123
+                'animate__zoomInUp' => 'zoomInUp',
124
+                /* Zooming exits */
125
+                'animate__zoomOut' => 'zoomOut',
126
+                'animate__zoomOutDown' => 'zoomOutDown',
127
+                'animate__zoomOutLeft' => 'zoomOutLeft',
128
+                'animate__zoomOutRight' => 'zoomOutRight',
129
+                'animate__zoomOutUp' => 'zoomOutUp',
130
+                /* Sliding entrances */
131
+                'animate__slideInDown' => 'slideInDown',
132
+                'animate__slideInLeft' => 'slideInLeft',
133
+                'animate__slideInRight' => 'slideInRight',
134
+                'animate__slideInUp' => 'slideInUp',
135
+                /* Sliding exits */
136
+                'animate__slideOutDown' => 'slideOutDown',
137
+                'animate__slideOutLeft' => 'slideOutLeft',
138
+                'animate__slideOutRight' => 'slideOutRight',
139
+                'animate__slideOutUp' => 'slideOutUp',
140
+            ),
141
+            'eval' => array('chosen' => 'true')
142
+        ),
143
+
144
+        'no_padding' => array(
145
+            'label' => array('Abstand komplett entfernen', 'Das vorherige und nächste Element bzw. der Footer "hängen" dann direkt an diesem Element'),
146
+            'inputType' => 'checkbox',
147
+        ),
148
+
149
+        'row' => array(
150
+            'label' => array('Zeilen', ''),
151
+            'elementLabel' => '%s. Zeile',
152
+            'inputType' => 'list',
153
+            'minItems' => 0,
154
+            'maxItems' => 10,
155
+            'fields' => array(
156
+                'row_name' => array(
157
+                    'label' => array('Zeilen-Bezeichnung', 'dient rein zur Orientierung, hat keinen Einfluss auf Frontend'),
158
+                    'inputType' => 'text',
159
+                ),
160
+
161
+                'settings_1' => array(
162
+                    'label' => array('Einstellungen', ''),
163
+                    'inputType' => 'group',
164
+                ),
165
+                'animation_type' => array(
166
+                    'label' => array(
167
+                        'de' => array('Art der Einblendeanimation', 'Siehe https://animate.style/ für Beispiele'),
168
+                    ),
169
+                    'inputType' => 'select',
170
+                    'options' => array(
171
+                        /* Fading entrances  */
172
+                        'animate__fadeInUp' => 'fadeInUp (Meistens Standard)',
173
+                        'no-animation' => 'Keine Animation',
174
+                        'animate__fadeIn' => 'fadeIn',
175
+                        'animate__fadeInDown' => 'fadeInDown',
176
+                        'animate__fadeInDownBig' => 'fadeInDownBig',
177
+                        'animate__fadeInLeft' => 'fadeInLeft',
178
+                        'animate__fadeInLeftBig' => 'fadeInLeftBig',
179
+                        'animate__fadeInRight' => 'fadeInRight',
180
+                        'animate__fadeInRightBig' => 'fadeInRightBig',
181
+                        'animate__fadeInUpBig' => 'fadeInUpBig',
182
+                        'animate__fadeInTopLeft' => 'fadeInTopLeft',
183
+                        'animate__fadeInTopRight' => 'fadeInTopRight',
184
+                        'animate__fadeInBottomLeft' => 'fadeInBottomLeft',
185
+                        'animate__fadeInBottomRight' => 'fadeInBottomRight',
186
+                        /* Attention seekers  */
187
+                        'animate__bounce' => 'bounce',
188
+                        'animate__flash' => 'flash',
189
+                        'animate__pulse' => 'pulse',
190
+                        'animate__rubberBand' => 'rubberBand',
191
+                        'animate__shakeX' => 'shakeX',
192
+                        'animate__shakeY' => 'shakeY',
193
+                        'animate__headShake' => 'headShake',
194
+                        'animate__swing' => 'swing',
195
+                        'animate__tada' => 'tada',
196
+                        'animate__wobble' => 'wobble',
197
+                        'animate__jello' => 'jello',
198
+                        'animate__heartBeat' => 'heartBeat',
199
+                        /* Back entrances */
200
+                        'animate__backInDown' => 'backInDown',
201
+                        'animate__backInLeft' => 'backInLeft',
202
+                        'animate__backInRight' => 'backInRight',
203
+                        'animate__backInUp' => 'backInUp',
204
+                        /* Back exits */
205
+                        'animate__backOutDown' => 'backOutDown',
206
+                        'animate__backOutLeft' => 'backOutLeft',
207
+                        'animate__backOutRight' => 'backOutRight',
208
+                        'animate__backOutUp' => 'backOutUp',
209
+                        /* Bouncing entrances  */
210
+                        'animate__bounceIn' => 'bounceIn',
211
+                        'animate__bounceInDown' => 'bounceInDown',
212
+                        'animate__bounceInLeft' => 'bounceInLeft',
213
+                        'animate__bounceInRight' => 'bounceInRight',
214
+                        'animate__bounceInUp' => 'bounceInUp',
215
+                        /* Bouncing exits  */
216
+                        'animate__bounceOut' => 'bounceOut',
217
+                        'animate__bounceOutDown' => 'bounceOutDown',
218
+                        'animate__bounceOutLeft' => 'bounceOutLeft',
219
+                        'animate__bounceOutRight' => 'bounceOutRight',
220
+                        'animate__bounceOutUp' => 'bounceOutUp',
221
+                        /* Fading exits */
222
+                        'animate__fadeOut' => 'fadeOut',
223
+                        'animate__fadeOutDown' => 'fadeOutDown',
224
+                        'animate__fadeOutDownBig' => 'fadeOutDownBig',
225
+                        'animate__fadeOutLeft' => 'fadeOutLeft',
226
+                        'animate__fadeOutLeftBig' => 'fadeOutLeftBig',
227
+                        'animate__fadeOutRight' => 'fadeOutRight',
228
+                        'animate__fadeOutRightBig' => 'fadeOutRightBig',
229
+                        'animate__fadeOutUp' => 'fadeOutUp',
230
+                        'animate__fadeOutUpBig' => 'fadeOutUpBig',
231
+                        'animate__fadeOutTopLeft' => 'fadeOutTopLeft',
232
+                        'animate__fadeOutTopRight' => 'fadeOutTopRight',
233
+                        'animate__fadeOutBottomRight' => 'fadeOutBottomRight',
234
+                        'animate__fadeOutBottomLeft' => 'fadeOutBottomLeft',
235
+                        /* Flippers */
236
+                        'animate__flip' => 'flip',
237
+                        'animate__flipInX' => 'flipInX',
238
+                        'animate__flipInY' => 'flipInY',
239
+                        'animate__flipOutX' => 'flipOutX',
240
+                        'animate__flipOutY' => 'flipOutY',
241
+                        /* Lightspeed */
242
+                        'animate__lightSpeedInRight' => 'lightSpeedInRight',
243
+                        'animate__lightSpeedInLeft' => 'lightSpeedInLeft',
244
+                        'animate__lightSpeedOutRight' => 'lightSpeedOutRight',
245
+                        'animate__lightSpeedOutLeft' => 'lightSpeedOutLeft',
246
+                        /* Rotating entrances */
247
+                        'animate__rotateIn' => 'rotateIn',
248
+                        'animate__rotateInDownLeft' => 'rotateInDownLeft',
249
+                        'animate__rotateInDownRight' => 'rotateInDownRight',
250
+                        'animate__rotateInUpLeft' => 'rotateInUpLeft',
251
+                        'animate__rotateInUpRight' => 'rotateInUpRight',
252
+                        /* Rotating exits */
253
+                        'animate__rotateOut' => 'rotateOut',
254
+                        'animate__rotateOutDownLeft' => 'rotateOutDownLeft',
255
+                        'animate__rotateOutDownRight' => 'rotateOutDownRight',
256
+                        'animate__rotateOutUpLeft' => 'rotateOutUpLeft',
257
+                        'animate__rotateOutUpRight' => 'rotateOutUpRight',
258
+                        /* Specials */
259
+                        'animate__hinge' => 'hinge',
260
+                        'animate__jackInTheBox' => 'jackInTheBox',
261
+                        'animate__rollIn' => 'rollIn',
262
+                        'animate__rollOut' => 'rollOut',
263
+                        /* Zooming entrances */
264
+                        'animate__zoomIn' => 'zoomIn',
265
+                        'animate__zoomInDown' => 'zoomInDown',
266
+                        'animate__zoomInLeft' => 'zoomInLeft',
267
+                        'animate__zoomInRight' => 'zoomInRight',
268
+                        'animate__zoomInUp' => 'zoomInUp',
269
+                        /* Zooming exits */
270
+                        'animate__zoomOut' => 'zoomOut',
271
+                        'animate__zoomOutDown' => 'zoomOutDown',
272
+                        'animate__zoomOutLeft' => 'zoomOutLeft',
273
+                        'animate__zoomOutRight' => 'zoomOutRight',
274
+                        'animate__zoomOutUp' => 'zoomOutUp',
275
+                        /* Sliding entrances */
276
+                        'animate__slideInDown' => 'slideInDown',
277
+                        'animate__slideInLeft' => 'slideInLeft',
278
+                        'animate__slideInRight' => 'slideInRight',
279
+                        'animate__slideInUp' => 'slideInUp',
280
+                        /* Sliding exits */
281
+                        'animate__slideOutDown' => 'slideOutDown',
282
+                        'animate__slideOutLeft' => 'slideOutLeft',
283
+                        'animate__slideOutRight' => 'slideOutRight',
284
+                        'animate__slideOutUp' => 'slideOutUp',
285
+                    ),
286
+                    'eval' => array('chosen' => 'true')
287
+                ),
288
+                'reverse' => array(
289
+                    'label' => array('Spalten umkehren', 'die Positionen der linken und rechten Spalte werden getauscht'),
290
+                    'inputType' => 'checkbox',
291
+                ),
292
+                'bottom_spacing' => array(
293
+                    'label' => array('Abstand zur nächsten Zeile', 'Ansonsten liegen beide Zeilen direkt aneinander'),
294
+                    'inputType' => 'checkbox',
295
+                ),
296
+                'spacing_between' => array(
297
+                    'label' => array('Zwischenabstand zwischen den Spalten', 'Ansonsten liegen beide Spalten direkt aneinander'),
298
+                    'inputType' => 'checkbox',
299
+                ),
300
+
301
+
302
+                'boxedHeadline' => array(
303
+                    'label' => array('"Boxed-Headline"', ''),
304
+                    'inputType' => 'checkbox',
305
+                    'options' => array(
306
+                        '1' => 'Verwende eine "Boxed-Headline", die mittig über beiden Spalten liegt.',
307
+                    ),
308
+                ),
309
+
310
+                'kachel_left' => array(
311
+                    'label' => array('Kachel: linke Spalte ', ''),
312
+                    'inputType' => 'checkbox',
313
+                    'options' => array(
314
+                        '1' => 'Kachel für linke Spalte hinzufügen',
315
+                    ),
316
+                ),
317
+                'kachel_right' => array(
318
+                    'label' => array('Kachel: rechte Spalte ', ''),
319
+                    'inputType' => 'checkbox',
320
+                    'options' => array(
321
+                        '1' => 'Kachel für rechte Spalte hinzufügen',
322
+                    ),
323
+                ),
324
+
325
+                'settings_2' => array(
326
+                    'label' => array('Boxed-Headline', ''),
327
+                    'inputType' => 'group',
328
+                    'dependsOn' => array(
329
+                        'field' => 'boxedHeadline',
330
+                        'value' => '1',
331
+                    ),
332
+                ),
333
+                'boxed_headline_type' => array(
334
+                    'label' => array(
335
+                        'de' => array('Typ der Überschrift', ''),
336
+                    ),
337
+                    'inputType' => 'select',
338
+                    'options' => array(
339
+                        'h1' => 'H1',
340
+                        'h2' => 'H2',
341
+                        'h3' => 'H3',
342
+                        'h4' => 'H4',
343
+                        'h5' => 'H5',
344
+                    ),
345
+                    'eval' => array('tl_class' => 'clr '),
346
+                ),
347
+                'boxed_headline_onlystyle' => array(
348
+                    'label' => array('Text nur als Überschrift darstellen (hat dementsprechend keinen Einfluss auf SEO)', 'macht Sinn wenn man z. B. eine H3 unterhalb einer H1 anzeigen möchte, ohne dass eine H2 existiert'),
349
+                    'inputType' => 'checkbox',
350
+                    'eval' => array('tl_class' => 'clr'),
351
+                ),
352
+                'boxed_headline' => array(
353
+                    'label' => array('Überschrift auf Spaltenmitte liegend', 'In weißer Box mit schatten'),
354
+                    'inputType' => 'text',
355
+                    'eval' => array('allowHtml' => true, 'tl_class' => 'w50'),
356
+                ),
357
+                'boxed_subheadline' => array(
358
+                    'label' => array('Subline', ''),
359
+                    'inputType' => 'text',
360
+                    'eval' => array('allowHtml' => true, 'tl_class' => 'w50'),
361
+                ),
362
+
363
+
364
+                'settings_5' => array(
365
+                    'label' => array('Kachel linke Spalte', ''),
366
+                    'inputType' => 'group',
367
+                    'dependsOn' => array(
368
+                        'field' => 'kachel_left',
369
+                        'value' => '1',
370
+                    ),
371
+                ),
372
+                'animation_type_left_kachel' => array(
373
+                    'label' => array(
374
+                        'de' => array('Art der Einblendeanimation', 'Siehe https://animate.style/ für Beispiele'),
375
+                    ),
376
+                    'inputType' => 'select',
377
+                    'options' => array(
378
+                        /* Fading entrances  */
379
+                        'animate__fadeInUp' => 'fadeInUp (Meistens Standard)',
380
+                        'no-animation' => 'Keine Animation',
381
+                        'animate__fadeIn' => 'fadeIn',
382
+                        'animate__fadeInDown' => 'fadeInDown',
383
+                        'animate__fadeInDownBig' => 'fadeInDownBig',
384
+                        'animate__fadeInLeft' => 'fadeInLeft',
385
+                        'animate__fadeInLeftBig' => 'fadeInLeftBig',
386
+                        'animate__fadeInRight' => 'fadeInRight',
387
+                        'animate__fadeInRightBig' => 'fadeInRightBig',
388
+                        'animate__fadeInUpBig' => 'fadeInUpBig',
389
+                        'animate__fadeInTopLeft' => 'fadeInTopLeft',
390
+                        'animate__fadeInTopRight' => 'fadeInTopRight',
391
+                        'animate__fadeInBottomLeft' => 'fadeInBottomLeft',
392
+                        'animate__fadeInBottomRight' => 'fadeInBottomRight',
393
+                        /* Attention seekers  */
394
+                        'animate__bounce' => 'bounce',
395
+                        'animate__flash' => 'flash',
396
+                        'animate__pulse' => 'pulse',
397
+                        'animate__rubberBand' => 'rubberBand',
398
+                        'animate__shakeX' => 'shakeX',
399
+                        'animate__shakeY' => 'shakeY',
400
+                        'animate__headShake' => 'headShake',
401
+                        'animate__swing' => 'swing',
402
+                        'animate__tada' => 'tada',
403
+                        'animate__wobble' => 'wobble',
404
+                        'animate__jello' => 'jello',
405
+                        'animate__heartBeat' => 'heartBeat',
406
+                        /* Back entrances */
407
+                        'animate__backInDown' => 'backInDown',
408
+                        'animate__backInLeft' => 'backInLeft',
409
+                        'animate__backInRight' => 'backInRight',
410
+                        'animate__backInUp' => 'backInUp',
411
+                        /* Back exits */
412
+                        'animate__backOutDown' => 'backOutDown',
413
+                        'animate__backOutLeft' => 'backOutLeft',
414
+                        'animate__backOutRight' => 'backOutRight',
415
+                        'animate__backOutUp' => 'backOutUp',
416
+                        /* Bouncing entrances  */
417
+                        'animate__bounceIn' => 'bounceIn',
418
+                        'animate__bounceInDown' => 'bounceInDown',
419
+                        'animate__bounceInLeft' => 'bounceInLeft',
420
+                        'animate__bounceInRight' => 'bounceInRight',
421
+                        'animate__bounceInUp' => 'bounceInUp',
422
+                        /* Bouncing exits  */
423
+                        'animate__bounceOut' => 'bounceOut',
424
+                        'animate__bounceOutDown' => 'bounceOutDown',
425
+                        'animate__bounceOutLeft' => 'bounceOutLeft',
426
+                        'animate__bounceOutRight' => 'bounceOutRight',
427
+                        'animate__bounceOutUp' => 'bounceOutUp',
428
+                        /* Fading exits */
429
+                        'animate__fadeOut' => 'fadeOut',
430
+                        'animate__fadeOutDown' => 'fadeOutDown',
431
+                        'animate__fadeOutDownBig' => 'fadeOutDownBig',
432
+                        'animate__fadeOutLeft' => 'fadeOutLeft',
433
+                        'animate__fadeOutLeftBig' => 'fadeOutLeftBig',
434
+                        'animate__fadeOutRight' => 'fadeOutRight',
435
+                        'animate__fadeOutRightBig' => 'fadeOutRightBig',
436
+                        'animate__fadeOutUp' => 'fadeOutUp',
437
+                        'animate__fadeOutUpBig' => 'fadeOutUpBig',
438
+                        'animate__fadeOutTopLeft' => 'fadeOutTopLeft',
439
+                        'animate__fadeOutTopRight' => 'fadeOutTopRight',
440
+                        'animate__fadeOutBottomRight' => 'fadeOutBottomRight',
441
+                        'animate__fadeOutBottomLeft' => 'fadeOutBottomLeft',
442
+                        /* Flippers */
443
+                        'animate__flip' => 'flip',
444
+                        'animate__flipInX' => 'flipInX',
445
+                        'animate__flipInY' => 'flipInY',
446
+                        'animate__flipOutX' => 'flipOutX',
447
+                        'animate__flipOutY' => 'flipOutY',
448
+                        /* Lightspeed */
449
+                        'animate__lightSpeedInRight' => 'lightSpeedInRight',
450
+                        'animate__lightSpeedInLeft' => 'lightSpeedInLeft',
451
+                        'animate__lightSpeedOutRight' => 'lightSpeedOutRight',
452
+                        'animate__lightSpeedOutLeft' => 'lightSpeedOutLeft',
453
+                        /* Rotating entrances */
454
+                        'animate__rotateIn' => 'rotateIn',
455
+                        'animate__rotateInDownLeft' => 'rotateInDownLeft',
456
+                        'animate__rotateInDownRight' => 'rotateInDownRight',
457
+                        'animate__rotateInUpLeft' => 'rotateInUpLeft',
458
+                        'animate__rotateInUpRight' => 'rotateInUpRight',
459
+                        /* Rotating exits */
460
+                        'animate__rotateOut' => 'rotateOut',
461
+                        'animate__rotateOutDownLeft' => 'rotateOutDownLeft',
462
+                        'animate__rotateOutDownRight' => 'rotateOutDownRight',
463
+                        'animate__rotateOutUpLeft' => 'rotateOutUpLeft',
464
+                        'animate__rotateOutUpRight' => 'rotateOutUpRight',
465
+                        /* Specials */
466
+                        'animate__hinge' => 'hinge',
467
+                        'animate__jackInTheBox' => 'jackInTheBox',
468
+                        'animate__rollIn' => 'rollIn',
469
+                        'animate__rollOut' => 'rollOut',
470
+                        /* Zooming entrances */
471
+                        'animate__zoomIn' => 'zoomIn',
472
+                        'animate__zoomInDown' => 'zoomInDown',
473
+                        'animate__zoomInLeft' => 'zoomInLeft',
474
+                        'animate__zoomInRight' => 'zoomInRight',
475
+                        'animate__zoomInUp' => 'zoomInUp',
476
+                        /* Zooming exits */
477
+                        'animate__zoomOut' => 'zoomOut',
478
+                        'animate__zoomOutDown' => 'zoomOutDown',
479
+                        'animate__zoomOutLeft' => 'zoomOutLeft',
480
+                        'animate__zoomOutRight' => 'zoomOutRight',
481
+                        'animate__zoomOutUp' => 'zoomOutUp',
482
+                        /* Sliding entrances */
483
+                        'animate__slideInDown' => 'slideInDown',
484
+                        'animate__slideInLeft' => 'slideInLeft',
485
+                        'animate__slideInRight' => 'slideInRight',
486
+                        'animate__slideInUp' => 'slideInUp',
487
+                        /* Sliding exits */
488
+                        'animate__slideOutDown' => 'slideOutDown',
489
+                        'animate__slideOutLeft' => 'slideOutLeft',
490
+                        'animate__slideOutRight' => 'slideOutRight',
491
+                        'animate__slideOutUp' => 'slideOutUp',
492
+                    ),
493
+                    'eval' => array('chosen' => 'true')
494
+                ),
495
+
496
+                'kachel_left_position' => array(
497
+                    'label' => array(
498
+                        'de' => array('Kachel-Position', ''),
499
+                    ),
500
+                    'inputType' => 'select',
501
+                    'options' => array(
502
+                        'pos-centered' => 'Mittig',
503
+                        'pos-centered-right' => 'Mittig rechts',
504
+                        'pos-centered-left' => 'Mittig links',
505
+                        'pos-bottom-right' => 'Unten rechts',
506
+                        'pos-bottom-left' => 'Unten links',
507
+                        'pos-bottom-center' => 'Unten mittig',
508
+                        'pos-top-right' => 'Oben rechts',
509
+                        'pos-top-left' => 'Oben links',
510
+                        'pos-top-center' => 'Oben mittig'
511
+                    ),
512
+                    'eval' => array('tl_class' => 'w50'),
513
+                ),
514
+
515
+
516
+                'kachel_left_text_position' => array(
517
+                    'label' => array(
518
+                        'de' => array('Textausrichtung innerhalb der Kachel', ''),
519
+                    ),
520
+                    'inputType' => 'select',
521
+                    'options' => array(
522
+                        'justify-content-center align-items-center' => 'Mittig',
523
+                        'justify-content-center align-items-end' => 'Mittig rechts',
524
+                        'justify-content-center' => 'Mittig links',
525
+                        'align-items-end' => 'Oben rechts',
526
+                        'text-center' => 'Oben zentriert',
527
+                        'justify-content-end align-items-end' => 'Unten rechts',
528
+                        'justify-content-end' => 'Unten links',
529
+                        'justify-content-end text-center' => 'Unten zentriert',
530
+                        '' => 'Oben links'
531
+                    ),
532
+                    'eval' => array('tl_class' => 'w50'),
533
+                ),
534
+
535
+                'kachel_left_background_color' => array(
536
+                    'label' => array('Hintergrundfarbe', 'In HEX oder rgb(a) angeben'),
537
+                    'inputType' => 'text',
538
+                    'eval' => array('tl_class' => 'w50'),
539
+                ),
540
+                'kachel_left_text_color' => array(
541
+                    'label' => array('Alternative Textfarbe', 'In HEX oder rgb(a) angeben'),
542
+                    'inputType' => 'text',
543
+                    'eval' => array('tl_class' => 'w50'),
544
+                ),
545
+                'kachel_left_text' => array(
546
+                    'label' => array('Headline für Kachel in linker Spalte', 'HTML ist erlaubt'),
547
+                    'inputType' => 'text',
548
+                    'eval' => array('allowHtml' => true, 'tl_class' => 'clr', 'tl_class' => 'w50'),
549
+                ),
550
+
551
+
552
+                'kachel_left_url' => array(
553
+                    'label' => array('Verlinkung', ''),
554
+                    'inputType' => 'url',
555
+                    'eval' => array('tl_class' => 'w50'),
556
+                ),
557
+
558
+
559
+                'expand_left_kachel' => array(
560
+                    'label' => array('Kachel bei Hover vergrößern und Text anzeigen', ''),
561
+                    'inputType' => 'checkbox',
562
+                    'eval' => array('tl_class' => 'clr'),
563
+                    'options' => array(
564
+                        '1' => 'Kachel bei Hover vergrößern und Text anzeigen',
565
+                    ),
566
+                ),
567
+
568
+
569
+                'kachel_left_hover_text' => array(
570
+                    'label' => array('Text für Kachel', 'HTML ist erlaubt'),
571
+                    'inputType' => 'textarea',
572
+                    'eval' => array('rte' => 'tinyMCE'),
573
+                    'dependsOn' => array(
574
+                        'field' => 'expand_left_kachel',
575
+                        'value' => '1',
576
+                    ),
577
+                ),
578
+
579
+
580
+                'kachel_left_button_text' => array(
581
+                    'label' => array('Button-Text', ''),
582
+                    'inputType' => 'text',
583
+                    'eval' => array('tl_class' => 'w50'),
584
+                    'dependsOn' => array(
585
+                        'field' => 'expand_left_kachel',
586
+                        'value' => '1',
587
+                    ),
588
+                ),
589
+
590
+                'settings_6' => array(
591
+                    'label' => array('Kachel rechte Spalte', ''),
592
+                    'inputType' => 'group',
593
+                    'dependsOn' => array(
594
+                        'field' => 'kachel_right',
595
+                        'value' => '1',
596
+                    ),
597
+                ),
598
+                'animation_type_right_kachel' => array(
599
+                    'label' => array(
600
+                        'de' => array('Art der Einblendeanimation', 'Siehe https://animate.style/ für Beispiele'),
601
+                    ),
602
+                    'inputType' => 'select',
603
+                    'options' => array(
604
+                        /* Fading entrances  */
605
+                        'animate__fadeInUp' => 'fadeInUp (Meistens Standard)',
606
+                        'no-animation' => 'Keine Animation',
607
+                        'animate__fadeIn' => 'fadeIn',
608
+                        'animate__fadeInDown' => 'fadeInDown',
609
+                        'animate__fadeInDownBig' => 'fadeInDownBig',
610
+                        'animate__fadeInLeft' => 'fadeInLeft',
611
+                        'animate__fadeInLeftBig' => 'fadeInLeftBig',
612
+                        'animate__fadeInRight' => 'fadeInRight',
613
+                        'animate__fadeInRightBig' => 'fadeInRightBig',
614
+                        'animate__fadeInUpBig' => 'fadeInUpBig',
615
+                        'animate__fadeInTopLeft' => 'fadeInTopLeft',
616
+                        'animate__fadeInTopRight' => 'fadeInTopRight',
617
+                        'animate__fadeInBottomLeft' => 'fadeInBottomLeft',
618
+                        'animate__fadeInBottomRight' => 'fadeInBottomRight',
619
+                        /* Attention seekers  */
620
+                        'animate__bounce' => 'bounce',
621
+                        'animate__flash' => 'flash',
622
+                        'animate__pulse' => 'pulse',
623
+                        'animate__rubberBand' => 'rubberBand',
624
+                        'animate__shakeX' => 'shakeX',
625
+                        'animate__shakeY' => 'shakeY',
626
+                        'animate__headShake' => 'headShake',
627
+                        'animate__swing' => 'swing',
628
+                        'animate__tada' => 'tada',
629
+                        'animate__wobble' => 'wobble',
630
+                        'animate__jello' => 'jello',
631
+                        'animate__heartBeat' => 'heartBeat',
632
+                        /* Back entrances */
633
+                        'animate__backInDown' => 'backInDown',
634
+                        'animate__backInLeft' => 'backInLeft',
635
+                        'animate__backInRight' => 'backInRight',
636
+                        'animate__backInUp' => 'backInUp',
637
+                        /* Back exits */
638
+                        'animate__backOutDown' => 'backOutDown',
639
+                        'animate__backOutLeft' => 'backOutLeft',
640
+                        'animate__backOutRight' => 'backOutRight',
641
+                        'animate__backOutUp' => 'backOutUp',
642
+                        /* Bouncing entrances  */
643
+                        'animate__bounceIn' => 'bounceIn',
644
+                        'animate__bounceInDown' => 'bounceInDown',
645
+                        'animate__bounceInLeft' => 'bounceInLeft',
646
+                        'animate__bounceInRight' => 'bounceInRight',
647
+                        'animate__bounceInUp' => 'bounceInUp',
648
+                        /* Bouncing exits  */
649
+                        'animate__bounceOut' => 'bounceOut',
650
+                        'animate__bounceOutDown' => 'bounceOutDown',
651
+                        'animate__bounceOutLeft' => 'bounceOutLeft',
652
+                        'animate__bounceOutRight' => 'bounceOutRight',
653
+                        'animate__bounceOutUp' => 'bounceOutUp',
654
+                        /* Fading exits */
655
+                        'animate__fadeOut' => 'fadeOut',
656
+                        'animate__fadeOutDown' => 'fadeOutDown',
657
+                        'animate__fadeOutDownBig' => 'fadeOutDownBig',
658
+                        'animate__fadeOutLeft' => 'fadeOutLeft',
659
+                        'animate__fadeOutLeftBig' => 'fadeOutLeftBig',
660
+                        'animate__fadeOutRight' => 'fadeOutRight',
661
+                        'animate__fadeOutRightBig' => 'fadeOutRightBig',
662
+                        'animate__fadeOutUp' => 'fadeOutUp',
663
+                        'animate__fadeOutUpBig' => 'fadeOutUpBig',
664
+                        'animate__fadeOutTopLeft' => 'fadeOutTopLeft',
665
+                        'animate__fadeOutTopRight' => 'fadeOutTopRight',
666
+                        'animate__fadeOutBottomRight' => 'fadeOutBottomRight',
667
+                        'animate__fadeOutBottomLeft' => 'fadeOutBottomLeft',
668
+                        /* Flippers */
669
+                        'animate__flip' => 'flip',
670
+                        'animate__flipInX' => 'flipInX',
671
+                        'animate__flipInY' => 'flipInY',
672
+                        'animate__flipOutX' => 'flipOutX',
673
+                        'animate__flipOutY' => 'flipOutY',
674
+                        /* Lightspeed */
675
+                        'animate__lightSpeedInRight' => 'lightSpeedInRight',
676
+                        'animate__lightSpeedInLeft' => 'lightSpeedInLeft',
677
+                        'animate__lightSpeedOutRight' => 'lightSpeedOutRight',
678
+                        'animate__lightSpeedOutLeft' => 'lightSpeedOutLeft',
679
+                        /* Rotating entrances */
680
+                        'animate__rotateIn' => 'rotateIn',
681
+                        'animate__rotateInDownLeft' => 'rotateInDownLeft',
682
+                        'animate__rotateInDownRight' => 'rotateInDownRight',
683
+                        'animate__rotateInUpLeft' => 'rotateInUpLeft',
684
+                        'animate__rotateInUpRight' => 'rotateInUpRight',
685
+                        /* Rotating exits */
686
+                        'animate__rotateOut' => 'rotateOut',
687
+                        'animate__rotateOutDownLeft' => 'rotateOutDownLeft',
688
+                        'animate__rotateOutDownRight' => 'rotateOutDownRight',
689
+                        'animate__rotateOutUpLeft' => 'rotateOutUpLeft',
690
+                        'animate__rotateOutUpRight' => 'rotateOutUpRight',
691
+                        /* Specials */
692
+                        'animate__hinge' => 'hinge',
693
+                        'animate__jackInTheBox' => 'jackInTheBox',
694
+                        'animate__rollIn' => 'rollIn',
695
+                        'animate__rollOut' => 'rollOut',
696
+                        /* Zooming entrances */
697
+                        'animate__zoomIn' => 'zoomIn',
698
+                        'animate__zoomInDown' => 'zoomInDown',
699
+                        'animate__zoomInLeft' => 'zoomInLeft',
700
+                        'animate__zoomInRight' => 'zoomInRight',
701
+                        'animate__zoomInUp' => 'zoomInUp',
702
+                        /* Zooming exits */
703
+                        'animate__zoomOut' => 'zoomOut',
704
+                        'animate__zoomOutDown' => 'zoomOutDown',
705
+                        'animate__zoomOutLeft' => 'zoomOutLeft',
706
+                        'animate__zoomOutRight' => 'zoomOutRight',
707
+                        'animate__zoomOutUp' => 'zoomOutUp',
708
+                        /* Sliding entrances */
709
+                        'animate__slideInDown' => 'slideInDown',
710
+                        'animate__slideInLeft' => 'slideInLeft',
711
+                        'animate__slideInRight' => 'slideInRight',
712
+                        'animate__slideInUp' => 'slideInUp',
713
+                        /* Sliding exits */
714
+                        'animate__slideOutDown' => 'slideOutDown',
715
+                        'animate__slideOutLeft' => 'slideOutLeft',
716
+                        'animate__slideOutRight' => 'slideOutRight',
717
+                        'animate__slideOutUp' => 'slideOutUp',
718
+                    ),
719
+                    'eval' => array('chosen' => 'true')
720
+                ),
721
+
722
+                'kachel_right_position' => array(
723
+                    'label' => array(
724
+                        'de' => array('Kachel-Position', ''),
725
+                    ),
726
+                    'inputType' => 'select',
727
+                    'options' => array(
728
+                        'pos-centered' => 'Mittig',
729
+                        'pos-centered-right' => 'Mittig rechts',
730
+                        'pos-centered-left' => 'Mittig links',
731
+                        'pos-bottom-right' => 'Unten rechts',
732
+                        'pos-bottom-left' => 'Unten links',
733
+                        'pos-bottom-center' => 'Unten mittig',
734
+                        'pos-top-right' => 'Oben rechts',
735
+                        'pos-top-left' => 'Oben links',
736
+                        'pos-top-center' => 'Oben mittig'
737
+                    ),
738
+                    'eval' => array('tl_class' => 'w50'),
739
+                ),
740
+
741
+                'kachel_right_text_position' => array(
742
+                    'label' => array(
743
+                        'de' => array('Textausrichtung innerhalb der Kachel', ''),
744
+                    ),
745
+                    'inputType' => 'select',
746
+                    'options' => array(
747
+                        'justify-content-center align-items-center' => 'Mittig',
748
+                        'justify-content-center align-items-end' => 'Mittig rechts',
749
+                        'justify-content-center' => 'Mittig links',
750
+                        'align-items-end' => 'Oben rechts',
751
+                        'text-center' => 'Oben zentriert',
752
+                        'justify-content-end align-items-end' => 'Unten rechts',
753
+                        'justify-content-end' => 'Unten links',
754
+                        'justify-content-end text-center' => 'Unten zentriert',
755
+                        '' => 'Oben links'
756
+                    ),
757
+                    'eval' => array('tl_class' => 'w50'),
758
+                ),
759
+
760
+
761
+                'kachel_right_background_color' => array(
762
+                    'label' => array('Hintergrundfarbe', 'In HEX oder rgb(a) angeben'),
763
+                    'inputType' => 'text',
764
+                    'eval' => array('tl_class' => 'w50'),
765
+                ),
766
+                'kachel_right_text_color' => array(
767
+                    'label' => array('Alternative Textfarbe', 'In HEX oder rgb(a) angeben'),
768
+                    'inputType' => 'text',
769
+                    'eval' => array('tl_class' => 'w50'),
770
+                ),
771
+
772
+                'kachel_right_text' => array(
773
+                    'label' => array('Headline für Kachel in rechter Spalte', 'HTML ist erlaubt'),
774
+                    'inputType' => 'text',
775
+                    'eval' => array('allowHtml' => true, 'tl_class' => 'clr', 'tl_class' => 'w50'),
776
+                ),
777
+
778
+                'kachel_right_url' => array(
779
+                    'label' => array('Verlinkung', ''),
780
+                    'inputType' => 'url',
781
+                    'eval' => array('tl_class' => 'w50'),
782
+                ),
783
+
784
+
785
+                'expand_right_kachel' => array(
786
+                    'label' => array('Kachel bei Hover vergrößern und Text anzeigen', ''),
787
+                    'inputType' => 'checkbox',
788
+                    'eval' => array('tl_class' => 'clr'),
789
+                    'options' => array(
790
+                        '1' => 'Kachel bei Hover vergrößern und Text anzeigen',
791
+                    ),
792
+                ),
793
+
794
+
795
+                'kachel_right_hover_text' => array(
796
+                    'label' => array('Text für Kachel', 'HTML ist erlaubt'),
797
+                    'inputType' => 'textarea',
798
+                    'eval' => array('rte' => 'tinyMCE'),
799
+                    'dependsOn' => array(
800
+                        'field' => 'expand_right_kachel',
801
+                        'value' => '1',
802
+                    ),
803
+                ),
804
+
805
+
806
+                'kachel_right_button_text' => array(
807
+                    'label' => array('Button-Text', ''),
808
+                    'inputType' => 'text',
809
+                    'eval' => array('tl_class' => 'w50'),
810
+                    'dependsOn' => array(
811
+                        'field' => 'expand_right_kachel',
812
+                        'value' => '1',
813
+                    ),
814
+                ),
815
+
816
+
817
+                'settings_3' => array(
818
+                    'label' => array('Linke Spalte (Inhaltsspalte)', ''),
819
+                    'inputType' => 'group',
820
+                ),
821
+                'darken_content' => array(
822
+                    'label' => array('Linke Spalte abdunkeln', ''),
823
+                    'inputType' => 'checkbox',
824
+                    'eval' => array('tl_class' => 'clr'),
825
+                ),
826
+                'image_leftcol' => array(
827
+                    'label' => array('Bild', ''),
828
+                    'inputType' => 'fileTree',
829
+                    'eval' => array(
830
+                        'multiple' => false,
831
+                        'fieldType' => 'radio',
832
+                        'filesOnly' => true,
833
+                        'extensions' => 'jpg,jpeg,png,svg',
834
+                        'tl_class' => 'clr'
835
+                    ),
836
+                ),
837
+
838
+                'size_left' => array(
839
+                    'label' => array('Bildbreite und Bildhöhe', ''),
840
+                    'inputType' => 'imageSize',
841
+                    'options' => System::getImageSizes(),
842
+                    'reference' => &$GLOBALS['TL_LANG']['MSC'],
843
+                    'eval' => array(
844
+                        'rgxp' => 'digit',
845
+                        'includeBlankOption' => true,
846
+                    ),
847
+                ),
848
+
849
+                'column_width' => array(
850
+                    'label' => array(
851
+                        'de' => array('Breite der linken Spalte', ''),
852
+                    ),
853
+                    'inputType' => 'select',
854
+                    'options' => array(
855
+                        'col-12 col-md-6 col-lg-4' => '33%',
856
+                        'col-12 col-md-6 col-lg-5' => 'ca. 40%',
857
+                        'col-12 col-md-6' => '50%',
858
+                        'col-12 col-lg-8' => '66.66%',
859
+                        'col-12 col-lg-9' => '75%'
860
+                    ),
861
+                ),
862
+
863
+                'alternate_background' => array(
864
+                    'label' => array('Alternative Hintergrundfarbe für linke Spalte', 'In HEX oder rgb(a) angeben'),
865
+                    'inputType' => 'text',
866
+                    'eval' => array('tl_class' => 'w50'),
867
+                ),
868
+
869
+
870
+                'alternate_textcolor' => array(
871
+                    'label' => array('Alternative Textfarbe', 'In HEX oder rgb(a) angeben'),
872
+                    'inputType' => 'text',
873
+                    'eval' => array('tl_class' => 'w50'),
874
+                ),
875
+
876
+                'innerpadding' => array(
877
+                    'label' => array('Innenabstand (oben/unten) innerhalb der Zeile', 'Funktioniert nur bei alternativer Hintergrundfarbe'),
878
+                    'inputType' => 'checkbox',
879
+                    'eval' => array('tl_class' => 'clr'),
880
+                ),
881
+
882
+
883
+                'headline_type' => array(
884
+                    'label' => array(
885
+                        'de' => array('Typ der Überschrift', ''),
886
+                    ),
887
+                    'inputType' => 'select',
888
+                    'options' => array(
889
+                        'h1' => 'H1',
890
+                        'h2' => 'H2',
891
+                        'h3' => 'H3',
892
+                        'h4' => 'H4',
893
+                        'h5' => 'H5',
894
+                    ),
895
+                    'eval' => array('tl_class' => 'clr'),
896
+                ),
897
+                'onlystyle' => array(
898
+                    'label' => array('Text nur als Überschrift darstellen (hat dementsprechend keinen Einfluss auf SEO)', 'macht Sinn wenn man z. B. eine H3 unterhalb einer H1 anzeigen möchte, ohne dass eine H2 existiert'),
899
+                    'inputType' => 'checkbox',
900
+                ),
901
+                'ce_headline' => array(
902
+                    'label' => array('Überschrift', ''),
903
+                    'inputType' => 'text',
904
+                    'eval' => array('allowHtml' => true, 'tl_class' => 'w50'),
905
+                ),
906
+                'ce_subline' => array(
907
+                    'label' => array('Subline', ''),
908
+                    'inputType' => 'text',
909
+                    'eval' => array('tl_class' => 'w50'),
910
+                ),
911
+                'content' => array(
912
+                    'label' => array('Text (linke Spalte)', ''),
913
+                    'inputType' => 'textarea',
914
+                    'eval' => array('rte' => 'tinyMCE', 'tl_class' => 'clr'),
915
+                ),
916
+                'textalign' => array(
917
+                    'label' => array(
918
+                        'de' => array('Text-Ausrichtung', ''),
919
+                    ),
920
+                    'inputType' => 'select',
921
+                    'options' => array(
922
+                        'text-md-start' => 'Linksbündig',
923
+                        'text-md-center' => 'Zentriert',
924
+                        'text-md-end' => 'Rechtsbündig',
925
+                    ),
926
+                    'eval' => array('tl_class' => 'clr'),
927
+                ),
928
+
929
+
930
+                'add_buttons' => array(
931
+                    'label' => array('Buttons zu linker Spalte hinzufügen', ''),
932
+                    'inputType' => 'checkbox',
933
+                    'options' => array(
934
+                        '1' => 'Buttons zu linker Spalte hinzufügen',
935
+                    ),
936
+                ),
937
+
938
+                'buttons' => array(
939
+                    'label' => array('Buttons für linke Spalte', ''),
940
+                    'elementLabel' => '%s. Button',
941
+                    'inputType' => 'list',
942
+                    'minItems' => 0,
943
+                    'maxItems' => 20,
944
+
945
+                    'dependsOn' => array(
946
+                        'field' => 'add_buttons',
947
+                        'value' => '1',
948
+                    ),
949
+
950
+                    'fields' => array(
951
+                        'animation_type' => array(
952
+                            'label' => array(
953
+                                'de' => array('Art der Einblendeanimation', 'Siehe https://animate.style/ für Beispiele'),
954
+                            ),
955
+                            'inputType' => 'select',
956
+                            'options' => array(
957
+                                /* Fading entrances  */
958
+                                'animate__fadeInUp' => 'fadeInUp (Meistens Standard)',
959
+                                'no-animation' => 'Keine Animation',
960
+                                'animate__fadeIn' => 'fadeIn',
961
+                                'animate__fadeInDown' => 'fadeInDown',
962
+                                'animate__fadeInDownBig' => 'fadeInDownBig',
963
+                                'animate__fadeInLeft' => 'fadeInLeft',
964
+                                'animate__fadeInLeftBig' => 'fadeInLeftBig',
965
+                                'animate__fadeInRight' => 'fadeInRight',
966
+                                'animate__fadeInRightBig' => 'fadeInRightBig',
967
+                                'animate__fadeInUpBig' => 'fadeInUpBig',
968
+                                'animate__fadeInTopLeft' => 'fadeInTopLeft',
969
+                                'animate__fadeInTopRight' => 'fadeInTopRight',
970
+                                'animate__fadeInBottomLeft' => 'fadeInBottomLeft',
971
+                                'animate__fadeInBottomRight' => 'fadeInBottomRight',
972
+                                /* Attention seekers  */
973
+                                'animate__bounce' => 'bounce',
974
+                                'animate__flash' => 'flash',
975
+                                'animate__pulse' => 'pulse',
976
+                                'animate__rubberBand' => 'rubberBand',
977
+                                'animate__shakeX' => 'shakeX',
978
+                                'animate__shakeY' => 'shakeY',
979
+                                'animate__headShake' => 'headShake',
980
+                                'animate__swing' => 'swing',
981
+                                'animate__tada' => 'tada',
982
+                                'animate__wobble' => 'wobble',
983
+                                'animate__jello' => 'jello',
984
+                                'animate__heartBeat' => 'heartBeat',
985
+                                /* Back entrances */
986
+                                'animate__backInDown' => 'backInDown',
987
+                                'animate__backInLeft' => 'backInLeft',
988
+                                'animate__backInRight' => 'backInRight',
989
+                                'animate__backInUp' => 'backInUp',
990
+                                /* Back exits */
991
+                                'animate__backOutDown' => 'backOutDown',
992
+                                'animate__backOutLeft' => 'backOutLeft',
993
+                                'animate__backOutRight' => 'backOutRight',
994
+                                'animate__backOutUp' => 'backOutUp',
995
+                                /* Bouncing entrances  */
996
+                                'animate__bounceIn' => 'bounceIn',
997
+                                'animate__bounceInDown' => 'bounceInDown',
998
+                                'animate__bounceInLeft' => 'bounceInLeft',
999
+                                'animate__bounceInRight' => 'bounceInRight',
1000
+                                'animate__bounceInUp' => 'bounceInUp',
1001
+                                /* Bouncing exits  */
1002
+                                'animate__bounceOut' => 'bounceOut',
1003
+                                'animate__bounceOutDown' => 'bounceOutDown',
1004
+                                'animate__bounceOutLeft' => 'bounceOutLeft',
1005
+                                'animate__bounceOutRight' => 'bounceOutRight',
1006
+                                'animate__bounceOutUp' => 'bounceOutUp',
1007
+                                /* Fading exits */
1008
+                                'animate__fadeOut' => 'fadeOut',
1009
+                                'animate__fadeOutDown' => 'fadeOutDown',
1010
+                                'animate__fadeOutDownBig' => 'fadeOutDownBig',
1011
+                                'animate__fadeOutLeft' => 'fadeOutLeft',
1012
+                                'animate__fadeOutLeftBig' => 'fadeOutLeftBig',
1013
+                                'animate__fadeOutRight' => 'fadeOutRight',
1014
+                                'animate__fadeOutRightBig' => 'fadeOutRightBig',
1015
+                                'animate__fadeOutUp' => 'fadeOutUp',
1016
+                                'animate__fadeOutUpBig' => 'fadeOutUpBig',
1017
+                                'animate__fadeOutTopLeft' => 'fadeOutTopLeft',
1018
+                                'animate__fadeOutTopRight' => 'fadeOutTopRight',
1019
+                                'animate__fadeOutBottomRight' => 'fadeOutBottomRight',
1020
+                                'animate__fadeOutBottomLeft' => 'fadeOutBottomLeft',
1021
+                                /* Flippers */
1022
+                                'animate__flip' => 'flip',
1023
+                                'animate__flipInX' => 'flipInX',
1024
+                                'animate__flipInY' => 'flipInY',
1025
+                                'animate__flipOutX' => 'flipOutX',
1026
+                                'animate__flipOutY' => 'flipOutY',
1027
+                                /* Lightspeed */
1028
+                                'animate__lightSpeedInRight' => 'lightSpeedInRight',
1029
+                                'animate__lightSpeedInLeft' => 'lightSpeedInLeft',
1030
+                                'animate__lightSpeedOutRight' => 'lightSpeedOutRight',
1031
+                                'animate__lightSpeedOutLeft' => 'lightSpeedOutLeft',
1032
+                                /* Rotating entrances */
1033
+                                'animate__rotateIn' => 'rotateIn',
1034
+                                'animate__rotateInDownLeft' => 'rotateInDownLeft',
1035
+                                'animate__rotateInDownRight' => 'rotateInDownRight',
1036
+                                'animate__rotateInUpLeft' => 'rotateInUpLeft',
1037
+                                'animate__rotateInUpRight' => 'rotateInUpRight',
1038
+                                /* Rotating exits */
1039
+                                'animate__rotateOut' => 'rotateOut',
1040
+                                'animate__rotateOutDownLeft' => 'rotateOutDownLeft',
1041
+                                'animate__rotateOutDownRight' => 'rotateOutDownRight',
1042
+                                'animate__rotateOutUpLeft' => 'rotateOutUpLeft',
1043
+                                'animate__rotateOutUpRight' => 'rotateOutUpRight',
1044
+                                /* Specials */
1045
+                                'animate__hinge' => 'hinge',
1046
+                                'animate__jackInTheBox' => 'jackInTheBox',
1047
+                                'animate__rollIn' => 'rollIn',
1048
+                                'animate__rollOut' => 'rollOut',
1049
+                                /* Zooming entrances */
1050
+                                'animate__zoomIn' => 'zoomIn',
1051
+                                'animate__zoomInDown' => 'zoomInDown',
1052
+                                'animate__zoomInLeft' => 'zoomInLeft',
1053
+                                'animate__zoomInRight' => 'zoomInRight',
1054
+                                'animate__zoomInUp' => 'zoomInUp',
1055
+                                /* Zooming exits */
1056
+                                'animate__zoomOut' => 'zoomOut',
1057
+                                'animate__zoomOutDown' => 'zoomOutDown',
1058
+                                'animate__zoomOutLeft' => 'zoomOutLeft',
1059
+                                'animate__zoomOutRight' => 'zoomOutRight',
1060
+                                'animate__zoomOutUp' => 'zoomOutUp',
1061
+                                /* Sliding entrances */
1062
+                                'animate__slideInDown' => 'slideInDown',
1063
+                                'animate__slideInLeft' => 'slideInLeft',
1064
+                                'animate__slideInRight' => 'slideInRight',
1065
+                                'animate__slideInUp' => 'slideInUp',
1066
+                                /* Sliding exits */
1067
+                                'animate__slideOutDown' => 'slideOutDown',
1068
+                                'animate__slideOutLeft' => 'slideOutLeft',
1069
+                                'animate__slideOutRight' => 'slideOutRight',
1070
+                                'animate__slideOutUp' => 'slideOutUp',
1071
+                            ),
1072
+                            'eval' => array('chosen' => 'true')
1073
+                        ),
1074
+                        'link_text' => array(
1075
+                            'label' => array('Link-Beschriftung', ''),
1076
+                            'inputType' => 'text',
1077
+                            'eval' => array('allowHtml' => true),
1078
+                        ),
1079
+                        'link_betreff' => array(
1080
+                            'label' => array('Betreffzeile für "mailto:"-Buttons', '(optional, falls Link eine neue Email öffnen soll)'),
1081
+                            'inputType' => 'text',
1082
+                            'eval' => array('tl_class' => 'w50'),
1083
+                        ),
1084
+                        'link_url' => array(
1085
+                            'label' => array('Verlinkung', ''),
1086
+                            'inputType' => 'url',
1087
+                            'eval' => array('tl_class' => 'w50'),
1088
+                        ),
1089
+
1090
+                        'link_type' => array(
1091
+                            'label' => array(
1092
+                                'de' => array('Optik des Buttons', ''),
1093
+                            ),
1094
+                            'inputType' => 'select',
1095
+                            'options' => array(
1096
+                                'btn-primary' => 'Hauptfarbe',
1097
+                                'btn-outline-primary' => 'Hauptfarbe (Outline)',
1098
+                                'btn-secondary' => 'Sekundär-Farbe',
1099
+                                'btn-outline-secondary' => 'Sekundär-Farbe (Outline)',
1100
+                                'btn-link with-arrow' => 'Link-Optik mit Pfeilen',
1101
+                                'btn-outline-black' => 'Transparenter Button mit schwarzer Schrift und Rahmen', 'btn-outline-white' => 'Transparenter Button mit weißer Schrift und Rahmen',
1102
+                                'btn-white' => 'Weißer Button mit schwarzer Schrift',
1103
+                            ),
1104
+                            'eval' => array('tl_class' => 'w50'),
1105
+                        ),
1106
+                        'link_size' => array(
1107
+                            'label' => array(
1108
+                                'de' => array('Größe des Buttons', ''),
1109
+                            ),
1110
+                            'inputType' => 'select',
1111
+                            'options' => array(
1112
+                                '' => 'Standard',
1113
+                                'btn-sm' => 'Klein',
1114
+                                'btn-lg' => 'Groß',
1115
+                            ),
1116
+                            'eval' => array('tl_class' => 'w50'),
1117
+                        ),
1118
+
1119
+                        'new_tab' => array(
1120
+                            'label' => array('Link in neuen Tab öffnen', ''),
1121
+                            'inputType' => 'checkbox',
1122
+                            'eval' => array('tl_class' => 'clr'),
1123
+                        ),
1124
+                    ),
1125
+                ),
1126
+
1127
+                'settings_4' => array(
1128
+                    'label' => array('Rechte Spalte (Bildspalte)', ''),
1129
+                    'inputType' => 'group',
1130
+                ),
1131
+
1132
+
1133
+                'contentType' => array(
1134
+                    'label' => array('Bild oder iFrame einbinden ', ''),
1135
+                    'inputType' => 'radio',
1136
+                    'options' => array(
1137
+                        '1' => 'Ein Bild einbinden',
1138
+                        '2' => 'Ein iFrame, z. B. eine Google-Map einbinden',
1139
+                        '3' => 'Ein Video (mp4) einbinden',
1140
+                    ),
1141
+                ),
1142
+
1143
+                'not_as_bg' => array(
1144
+                    'label' => array('Bild nicht als "Hintergrund" einfügen', 'sondern in die Spalte "legen" damit es proportional mitskaliert.'),
1145
+                    'inputType' => 'checkbox',
1146
+                    'dependsOn' => array(
1147
+                        'field' => 'contentType',
1148
+                        'value' => '1',
1149
+                    ),
1150
+                ),
1151
+
1152
+                'image_both' => array(
1153
+                    'label' => array('Bild als Hintergrund für beide Spalten', 'falls ein Bild in der linken Spalte zugeordnet ist, liegt es über diesem Bild'),
1154
+                    'inputType' => 'checkbox',
1155
+                    'dependsOn' => array(
1156
+                        'field' => 'contentType',
1157
+                        'value' => '1',
1158
+                    ),
1159
+                ),
1160
+                'image' => array(
1161
+                    'label' => array('Bild', ''),
1162
+                    'inputType' => 'fileTree',
1163
+                    'eval' => array(
1164
+                        'multiple' => false,
1165
+                        'fieldType' => 'radio',
1166
+                        'filesOnly' => true,
1167
+                        'extensions' => 'jpg,jpeg,png,svg',
1168
+                        'tl_class' => 'clr'
1169
+                    ),
1170
+                    'dependsOn' => array(
1171
+                        'field' => 'contentType',
1172
+                        'value' => '1',
1173
+                    ),
1174
+                ),
1175
+
1176
+                'size_right' => array(
1177
+                    'label' => array('Bildbreite und Bildhöhe', ''),
1178
+                    'inputType' => 'imageSize',
1179
+                    'options' => System::getImageSizes(),
1180
+                    'reference' => &$GLOBALS['TL_LANG']['MSC'],
1181
+                    'eval' => array(
1182
+                        'rgxp' => 'digit',
1183
+                        'includeBlankOption' => true,
1184
+                    ),
1185
+                ),
1186
+
1187
+
1188
+                'content_rightcol' => array(
1189
+                    'label' => array('Extra Textfeld für rechte Spalte', 'Liegt auf dem Bild'),
1190
+                    'inputType' => 'textarea',
1191
+                    'eval' => array('rte' => 'tinyMCE', 'tl_class' => 'clr'),
1192
+                    'dependsOn' => array(
1193
+                        'field' => 'contentType',
1194
+                        'value' => '1',
1195
+                    ),
1196
+                ),
1197
+
1198
+                'alternate_image' => array(
1199
+                    'label' => array('Code als alternative zum Bild in Spalte anzeigen', 'z. B. Googlemap-Frame'),
1200
+                    'inputType' => 'textarea',
1201
+                    'dependsOn' => array(
1202
+                        'field' => 'contentType',
1203
+                        'value' => '2',
1204
+                    ),
1205
+                ),
1206
+
1207
+                'video' => array(
1208
+                    'label' => array('Video', 'Dateiformat: mp4'),
1209
+                    'inputType' => 'fileTree',
1210
+                    'eval' => array(
1211
+                        'multiple' => false,
1212
+                        'fieldType' => 'radio',
1213
+                        'filesOnly' => true,
1214
+                        'extensions' => 'mp4',
1215
+                        'tl_class' => 'clr'
1216
+                    ),
1217
+                    'dependsOn' => array(
1218
+                        'field' => 'contentType',
1219
+                        'value' => '3',
1220
+                    ),
1221
+                ),
1222
+            ),
1223
+        ),
1224
+    ),
1225
+);