1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,498 @@ |
1 |
+<?php |
|
2 |
+// rsce_my_element_config.php |
|
3 |
+return array( |
|
4 |
+ 'label' => array('Custom | Modales Fenster für Aktionen (actionmodal)', ''), |
|
5 |
+ 'types' => array('content'), |
|
6 |
+ 'contentCategory' => 'texts', |
|
7 |
+ 'moduleCategory' => 'miscellaneous', |
|
8 |
+ 'standardFields' => array('cssID'), |
|
9 |
+ 'wrapper' => array( |
|
10 |
+ 'type' => 'none', |
|
11 |
+ ), |
|
12 |
+ 'fields' => array( |
|
13 |
+ 'settings_modal' => array( |
|
14 |
+ 'label' => array('Einstellungen für modales Fenster', ''), |
|
15 |
+ 'inputType' => 'group', |
|
16 |
+ ), |
|
17 |
+ |
|
18 |
+ 'modal_headline' => array( |
|
19 |
+ 'label' => array('Überschrift für Modal-Header', 'Wenn leer, wird der Header ausgeblendet'), |
|
20 |
+ 'inputType' => 'text', |
|
21 |
+ ), |
|
22 |
+ 'modal_size' => array( |
|
23 |
+ 'label' => array( |
|
24 |
+ 'de' => array('Größe des modalen Fensters', ''), |
|
25 |
+ ), |
|
26 |
+ 'inputType' => 'select', |
|
27 |
+ 'options' => array( |
|
28 |
+ '' => 'Standard', |
|
29 |
+ 'modal-sm' => 'Klein', |
|
30 |
+ 'modal-lg' => 'Groß', |
|
31 |
+ 'modal-xl' => 'Sehr groß', |
|
32 |
+ ), |
|
33 |
+ 'eval' => array('tl_class' => 'w50'), |
|
34 |
+ ), |
|
35 |
+ |
|
36 |
+ 'animation_type' => array( |
|
37 |
+ 'label' => array( |
|
38 |
+ 'de' => array('Art der Einblendeanimation', 'Siehe https://animate.style/ für Beispiele'), |
|
39 |
+ ), |
|
40 |
+ 'inputType' => 'select', |
|
41 |
+ 'options' => array( |
|
42 |
+ /* Fading entrances */ |
|
43 |
+ 'animate__fadeInUp' => 'fadeInUp (Meistens Standard)', |
|
44 |
+ 'no-animation' => 'Keine Animation', |
|
45 |
+ 'animate__fadeIn' => 'fadeIn', |
|
46 |
+ 'animate__fadeInDown' => 'fadeInDown', |
|
47 |
+ 'animate__fadeInDownBig' => 'fadeInDownBig', |
|
48 |
+ 'animate__fadeInLeft' => 'fadeInLeft', |
|
49 |
+ 'animate__fadeInLeftBig' => 'fadeInLeftBig', |
|
50 |
+ 'animate__fadeInRight' => 'fadeInRight', |
|
51 |
+ 'animate__fadeInRightBig' => 'fadeInRightBig', |
|
52 |
+ 'animate__fadeInUpBig' => 'fadeInUpBig', |
|
53 |
+ 'animate__fadeInTopLeft' => 'fadeInTopLeft', |
|
54 |
+ 'animate__fadeInTopRight' => 'fadeInTopRight', |
|
55 |
+ 'animate__fadeInBottomLeft' => 'fadeInBottomLeft', |
|
56 |
+ 'animate__fadeInBottomRight' => 'fadeInBottomRight', |
|
57 |
+ /* Attention seekers */ |
|
58 |
+ 'animate__bounce' => 'bounce', |
|
59 |
+ 'animate__flash' => 'flash', |
|
60 |
+ 'animate__pulse' => 'pulse', |
|
61 |
+ 'animate__rubberBand' => 'rubberBand', |
|
62 |
+ 'animate__shakeX' => 'shakeX', |
|
63 |
+ 'animate__shakeY' => 'shakeY', |
|
64 |
+ 'animate__headShake' => 'headShake', |
|
65 |
+ 'animate__swing' => 'swing', |
|
66 |
+ 'animate__tada' => 'tada', |
|
67 |
+ 'animate__wobble' => 'wobble', |
|
68 |
+ 'animate__jello' => 'jello', |
|
69 |
+ 'animate__heartBeat' => 'heartBeat', |
|
70 |
+ /* Back entrances */ |
|
71 |
+ 'animate__backInDown' => 'backInDown', |
|
72 |
+ 'animate__backInLeft' => 'backInLeft', |
|
73 |
+ 'animate__backInRight' => 'backInRight', |
|
74 |
+ 'animate__backInUp' => 'backInUp', |
|
75 |
+ /* Back exits */ |
|
76 |
+ 'animate__backOutDown' => 'backOutDown', |
|
77 |
+ 'animate__backOutLeft' => 'backOutLeft', |
|
78 |
+ 'animate__backOutRight' => 'backOutRight', |
|
79 |
+ 'animate__backOutUp' => 'backOutUp', |
|
80 |
+ /* Bouncing entrances */ |
|
81 |
+ 'animate__bounceIn' => 'bounceIn', |
|
82 |
+ 'animate__bounceInDown' => 'bounceInDown', |
|
83 |
+ 'animate__bounceInLeft' => 'bounceInLeft', |
|
84 |
+ 'animate__bounceInRight' => 'bounceInRight', |
|
85 |
+ 'animate__bounceInUp' => 'bounceInUp', |
|
86 |
+ /* Bouncing exits */ |
|
87 |
+ 'animate__bounceOut' => 'bounceOut', |
|
88 |
+ 'animate__bounceOutDown' => 'bounceOutDown', |
|
89 |
+ 'animate__bounceOutLeft' => 'bounceOutLeft', |
|
90 |
+ 'animate__bounceOutRight' => 'bounceOutRight', |
|
91 |
+ 'animate__bounceOutUp' => 'bounceOutUp', |
|
92 |
+ /* Fading exits */ |
|
93 |
+ 'animate__fadeOut' => 'fadeOut', |
|
94 |
+ 'animate__fadeOutDown' => 'fadeOutDown', |
|
95 |
+ 'animate__fadeOutDownBig' => 'fadeOutDownBig', |
|
96 |
+ 'animate__fadeOutLeft' => 'fadeOutLeft', |
|
97 |
+ 'animate__fadeOutLeftBig' => 'fadeOutLeftBig', |
|
98 |
+ 'animate__fadeOutRight' => 'fadeOutRight', |
|
99 |
+ 'animate__fadeOutRightBig' => 'fadeOutRightBig', |
|
100 |
+ 'animate__fadeOutUp' => 'fadeOutUp', |
|
101 |
+ 'animate__fadeOutUpBig' => 'fadeOutUpBig', |
|
102 |
+ 'animate__fadeOutTopLeft' => 'fadeOutTopLeft', |
|
103 |
+ 'animate__fadeOutTopRight' => 'fadeOutTopRight', |
|
104 |
+ 'animate__fadeOutBottomRight' => 'fadeOutBottomRight', |
|
105 |
+ 'animate__fadeOutBottomLeft' => 'fadeOutBottomLeft', |
|
106 |
+ /* Flippers */ |
|
107 |
+ 'animate__flip' => 'flip', |
|
108 |
+ 'animate__flipInX' => 'flipInX', |
|
109 |
+ 'animate__flipInY' => 'flipInY', |
|
110 |
+ 'animate__flipOutX' => 'flipOutX', |
|
111 |
+ 'animate__flipOutY' => 'flipOutY', |
|
112 |
+ /* Lightspeed */ |
|
113 |
+ 'animate__lightSpeedInRight' => 'lightSpeedInRight', |
|
114 |
+ 'animate__lightSpeedInLeft' => 'lightSpeedInLeft', |
|
115 |
+ 'animate__lightSpeedOutRight' => 'lightSpeedOutRight', |
|
116 |
+ 'animate__lightSpeedOutLeft' => 'lightSpeedOutLeft', |
|
117 |
+ /* Rotating entrances */ |
|
118 |
+ 'animate__rotateIn' => 'rotateIn', |
|
119 |
+ 'animate__rotateInDownLeft' => 'rotateInDownLeft', |
|
120 |
+ 'animate__rotateInDownRight' => 'rotateInDownRight', |
|
121 |
+ 'animate__rotateInUpLeft' => 'rotateInUpLeft', |
|
122 |
+ 'animate__rotateInUpRight' => 'rotateInUpRight', |
|
123 |
+ /* Rotating exits */ |
|
124 |
+ 'animate__rotateOut' => 'rotateOut', |
|
125 |
+ 'animate__rotateOutDownLeft' => 'rotateOutDownLeft', |
|
126 |
+ 'animate__rotateOutDownRight' => 'rotateOutDownRight', |
|
127 |
+ 'animate__rotateOutUpLeft' => 'rotateOutUpLeft', |
|
128 |
+ 'animate__rotateOutUpRight' => 'rotateOutUpRight', |
|
129 |
+ /* Specials */ |
|
130 |
+ 'animate__hinge' => 'hinge', |
|
131 |
+ 'animate__jackInTheBox' => 'jackInTheBox', |
|
132 |
+ 'animate__rollIn' => 'rollIn', |
|
133 |
+ 'animate__rollOut' => 'rollOut', |
|
134 |
+ /* Zooming entrances */ |
|
135 |
+ 'animate__zoomIn' => 'zoomIn', |
|
136 |
+ 'animate__zoomInDown' => 'zoomInDown', |
|
137 |
+ 'animate__zoomInLeft' => 'zoomInLeft', |
|
138 |
+ 'animate__zoomInRight' => 'zoomInRight', |
|
139 |
+ 'animate__zoomInUp' => 'zoomInUp', |
|
140 |
+ /* Zooming exits */ |
|
141 |
+ 'animate__zoomOut' => 'zoomOut', |
|
142 |
+ 'animate__zoomOutDown' => 'zoomOutDown', |
|
143 |
+ 'animate__zoomOutLeft' => 'zoomOutLeft', |
|
144 |
+ 'animate__zoomOutRight' => 'zoomOutRight', |
|
145 |
+ 'animate__zoomOutUp' => 'zoomOutUp', |
|
146 |
+ /* Sliding entrances */ |
|
147 |
+ 'animate__slideInDown' => 'slideInDown', |
|
148 |
+ 'animate__slideInLeft' => 'slideInLeft', |
|
149 |
+ 'animate__slideInRight' => 'slideInRight', |
|
150 |
+ 'animate__slideInUp' => 'slideInUp', |
|
151 |
+ /* Sliding exits */ |
|
152 |
+ 'animate__slideOutDown' => 'slideOutDown', |
|
153 |
+ 'animate__slideOutLeft' => 'slideOutLeft', |
|
154 |
+ 'animate__slideOutRight' => 'slideOutRight', |
|
155 |
+ 'animate__slideOutUp' => 'slideOutUp', |
|
156 |
+ ), |
|
157 |
+ 'eval' => array('chosen' => 'true', 'tl_class' => 'w50') |
|
158 |
+ ), |
|
159 |
+ |
|
160 |
+ 'modal_backgroundcolor' => array( |
|
161 |
+ 'label' => array('Hintergrundfarbe für das gesamte Modal', 'in HEX oder RGB angeben, Standard: Weiß'), |
|
162 |
+ 'inputType' => 'text', |
|
163 |
+ 'eval' => array('tl_class' => 'clr'), |
|
164 |
+ ), |
|
165 |
+ |
|
166 |
+ 'cookie_hide' => array( |
|
167 |
+ 'label' => array('Verstecken nach gesetztem Cookie', 'Nachdem das Fenster geschlossen wurde, wird ein Cookie gesetzt und das modale Fenster wird nicht erneut angezeigt.'), |
|
168 |
+ 'inputType' => 'checkbox', |
|
169 |
+ 'eval' => array('tl_class' => 'clr'), |
|
170 |
+ ), |
|
171 |
+ |
|
172 |
+ |
|
173 |
+ 'show_footer_close' => array( |
|
174 |
+ 'label' => array('Schließen Button zum Footer hinzufügen', ''), |
|
175 |
+ 'inputType' => 'checkbox', |
|
176 |
+ 'eval' => array('tl_class' => 'clr'), |
|
177 |
+ ), |
|
178 |
+ 'remove_image_padding' => array( |
|
179 |
+ 'label' => array('Außenabstand des Bildes entfernen', 'das Bild liegt dann an der Kante'), |
|
180 |
+ 'inputType' => 'checkbox', |
|
181 |
+ 'eval' => array('tl_class' => 'clr'), |
|
182 |
+ ), |
|
183 |
+ |
|
184 |
+ 'settings_image' => array( |
|
185 |
+ 'label' => array('Kopfbereich', ''), |
|
186 |
+ 'inputType' => 'group', |
|
187 |
+ ), |
|
188 |
+ |
|
189 |
+ 'image_headline_left' => array( |
|
190 |
+ 'label' => array('Überschrift für die linke Spalte des Bildes', '(ca. 35% breit)'), |
|
191 |
+ 'inputType' => 'text', |
|
192 |
+ 'eval' => array('allowHtml' => true, 'tl_class' => 'w50'), |
|
193 |
+ ), |
|
194 |
+ |
|
195 |
+ 'image_headline_right' => array( |
|
196 |
+ 'label' => array('Überschrift für Textbereich auf der rechten Seite', ''), |
|
197 |
+ 'inputType' => 'text', |
|
198 |
+ 'eval' => array('allowHtml' => true, 'tl_class' => 'w50'), |
|
199 |
+ ), |
|
200 |
+ |
|
201 |
+ 'image_text_right' => array( |
|
202 |
+ 'label' => array('Langtext für Textbereich auf der rechten Seite', ''), |
|
203 |
+ 'inputType' => 'textarea', |
|
204 |
+ 'eval' => array('rte' => 'tinyMCE', 'tl_class' => 'clr'), |
|
205 |
+ ), |
|
206 |
+ |
|
207 |
+ 'image_right_col_background_color' => array( |
|
208 |
+ 'label' => array('Hintergrundfarbe für rechte Spalte', 'in HEX oder RGB angeben, Standard: Schwarz mit .75 Deckungskraft'), |
|
209 |
+ 'inputType' => 'text', |
|
210 |
+ 'eval' => array('allowHtml' => true, 'tl_class' => 'w50'), |
|
211 |
+ ), |
|
212 |
+ |
|
213 |
+ 'image_right_col_text_color' => array( |
|
214 |
+ 'label' => array('Textfarbe für rechte Spalte', 'in HEX oder RGB angeben, Standard: weiß'), |
|
215 |
+ 'inputType' => 'text', |
|
216 |
+ 'eval' => array('allowHtml' => true, 'tl_class' => 'w50'), |
|
217 |
+ ), |
|
218 |
+ |
|
219 |
+ 'image' => array( |
|
220 |
+ 'label' => array('Bild', ''), |
|
221 |
+ 'inputType' => 'fileTree', |
|
222 |
+ 'eval' => array( |
|
223 |
+ 'multiple' => false, |
|
224 |
+ 'fieldType' => 'radio', |
|
225 |
+ 'filesOnly' => true, |
|
226 |
+ 'extensions' => 'jpg,jpeg,png', |
|
227 |
+ 'tl_class' => 'w50' |
|
228 |
+ ), |
|
229 |
+ ), |
|
230 |
+ |
|
231 |
+ 'as_bg' => array( |
|
232 |
+ 'label' => array('Bild als Hintergrund', 'dadurch bekommt der Bereich eine feste Höhe und das Bild wird evtl. beschnitten'), |
|
233 |
+ 'inputType' => 'checkbox', |
|
234 |
+ 'eval' => array('tl_class' => 'clr'), |
|
235 |
+ ), |
|
236 |
+ |
|
237 |
+ 'fixed_height' => array( |
|
238 |
+ 'label' => array('Feste Höhe', 'Bild-Bereich eine feste Höhe inkl. Einheit (z. B. px) zuweisen'), |
|
239 |
+ 'inputType' => 'text', |
|
240 |
+ 'dependsOn' => array( |
|
241 |
+ 'field' => 'as_bg', |
|
242 |
+ ), |
|
243 |
+ ), |
|
244 |
+ |
|
245 |
+ |
|
246 |
+ 'settings_progressbar' => array( |
|
247 |
+ 'label' => array('Fortschrittsanzeige', ''), |
|
248 |
+ 'inputType' => 'group', |
|
249 |
+ ), |
|
250 |
+ 'progress_image' => array( |
|
251 |
+ 'label' => array('Bild für Fortschrittsanzeige', 'Alternative'), |
|
252 |
+ 'inputType' => 'fileTree', |
|
253 |
+ 'eval' => array( |
|
254 |
+ 'multiple' => false, |
|
255 |
+ 'fieldType' => 'radio', |
|
256 |
+ 'filesOnly' => true, |
|
257 |
+ 'extensions' => 'jpg,jpeg,png,mp4,webm,ogv', |
|
258 |
+ ), |
|
259 |
+ ), |
|
260 |
+ |
|
261 |
+ 'progress_amount' => array( |
|
262 |
+ 'label' => array('Fortschrittsanzeige', 'Angeben, wie oft das Bild der Fortschrittsanzeige wiederholt werden soll oder zu wie viel % die Anzeige fortgeschritten sein soll, wenn kein Bild ausgewählt ist'), |
|
263 |
+ 'inputType' => 'text', |
|
264 |
+ ), |
|
265 |
+ |
|
266 |
+ |
|
267 |
+ 'settings_text' => array( |
|
268 |
+ 'label' => array('Unterer Bereich', ''), |
|
269 |
+ 'inputType' => 'group', |
|
270 |
+ ), |
|
271 |
+ |
|
272 |
+ |
|
273 |
+ 'image_left' => array( |
|
274 |
+ 'label' => array('Bild für linke Spalte', 'ca. 35% breit'), |
|
275 |
+ 'inputType' => 'fileTree', |
|
276 |
+ 'eval' => array( |
|
277 |
+ 'multiple' => false, |
|
278 |
+ 'fieldType' => 'radio', |
|
279 |
+ 'filesOnly' => true, |
|
280 |
+ 'extensions' => 'jpg,jpeg,png', |
|
281 |
+ ), |
|
282 |
+ ), |
|
283 |
+ |
|
284 |
+ |
|
285 |
+ 'headline' => array( |
|
286 |
+ 'label' => array('Überschrift', ''), |
|
287 |
+ 'inputType' => 'text', |
|
288 |
+ ), |
|
289 |
+ |
|
290 |
+ 'text' => array( |
|
291 |
+ 'label' => array('Langtext', 'es können auch Inserttags verwendet werden um Nodes, Artikel oder andere Elemente zu inkludieren'), |
|
292 |
+ 'inputType' => 'textarea', |
|
293 |
+ 'eval' => array('rte' => 'tinyMCE', 'tl_class' => 'clr'), |
|
294 |
+ ), |
|
295 |
+ |
|
296 |
+ |
|
297 |
+ 'buttons' => array( |
|
298 |
+ 'label' => array('Button', 'Ohne Buttons wird der Footer ausgeblendet'), |
|
299 |
+ 'elementLabel' => '%s. Button', |
|
300 |
+ 'inputType' => 'list', |
|
301 |
+ 'minItems' => 0, |
|
302 |
+ 'maxItems' => 10, |
|
303 |
+ 'fields' => array( |
|
304 |
+ 'animation_type' => array( |
|
305 |
+ 'label' => array( |
|
306 |
+ 'de' => array('Art der Einblendeanimation', 'Siehe https://animate.style/ für Beispiele'), |
|
307 |
+ ), |
|
308 |
+ 'inputType' => 'select', |
|
309 |
+ 'options' => array( |
|
310 |
+ /* Fading entrances */ |
|
311 |
+ 'animate__fadeInUp' => 'fadeInUp (Meistens Standard)', |
|
312 |
+ 'no-animation' => 'Keine Animation', |
|
313 |
+ 'animate__fadeIn' => 'fadeIn', |
|
314 |
+ 'animate__fadeInDown' => 'fadeInDown', |
|
315 |
+ 'animate__fadeInDownBig' => 'fadeInDownBig', |
|
316 |
+ 'animate__fadeInLeft' => 'fadeInLeft', |
|
317 |
+ 'animate__fadeInLeftBig' => 'fadeInLeftBig', |
|
318 |
+ 'animate__fadeInRight' => 'fadeInRight', |
|
319 |
+ 'animate__fadeInRightBig' => 'fadeInRightBig', |
|
320 |
+ 'animate__fadeInUpBig' => 'fadeInUpBig', |
|
321 |
+ 'animate__fadeInTopLeft' => 'fadeInTopLeft', |
|
322 |
+ 'animate__fadeInTopRight' => 'fadeInTopRight', |
|
323 |
+ 'animate__fadeInBottomLeft' => 'fadeInBottomLeft', |
|
324 |
+ 'animate__fadeInBottomRight' => 'fadeInBottomRight', |
|
325 |
+ /* Attention seekers */ |
|
326 |
+ 'animate__bounce' => 'bounce', |
|
327 |
+ 'animate__flash' => 'flash', |
|
328 |
+ 'animate__pulse' => 'pulse', |
|
329 |
+ 'animate__rubberBand' => 'rubberBand', |
|
330 |
+ 'animate__shakeX' => 'shakeX', |
|
331 |
+ 'animate__shakeY' => 'shakeY', |
|
332 |
+ 'animate__headShake' => 'headShake', |
|
333 |
+ 'animate__swing' => 'swing', |
|
334 |
+ 'animate__tada' => 'tada', |
|
335 |
+ 'animate__wobble' => 'wobble', |
|
336 |
+ 'animate__jello' => 'jello', |
|
337 |
+ 'animate__heartBeat' => 'heartBeat', |
|
338 |
+ /* Back entrances */ |
|
339 |
+ 'animate__backInDown' => 'backInDown', |
|
340 |
+ 'animate__backInLeft' => 'backInLeft', |
|
341 |
+ 'animate__backInRight' => 'backInRight', |
|
342 |
+ 'animate__backInUp' => 'backInUp', |
|
343 |
+ /* Back exits */ |
|
344 |
+ 'animate__backOutDown' => 'backOutDown', |
|
345 |
+ 'animate__backOutLeft' => 'backOutLeft', |
|
346 |
+ 'animate__backOutRight' => 'backOutRight', |
|
347 |
+ 'animate__backOutUp' => 'backOutUp', |
|
348 |
+ /* Bouncing entrances */ |
|
349 |
+ 'animate__bounceIn' => 'bounceIn', |
|
350 |
+ 'animate__bounceInDown' => 'bounceInDown', |
|
351 |
+ 'animate__bounceInLeft' => 'bounceInLeft', |
|
352 |
+ 'animate__bounceInRight' => 'bounceInRight', |
|
353 |
+ 'animate__bounceInUp' => 'bounceInUp', |
|
354 |
+ /* Bouncing exits */ |
|
355 |
+ 'animate__bounceOut' => 'bounceOut', |
|
356 |
+ 'animate__bounceOutDown' => 'bounceOutDown', |
|
357 |
+ 'animate__bounceOutLeft' => 'bounceOutLeft', |
|
358 |
+ 'animate__bounceOutRight' => 'bounceOutRight', |
|
359 |
+ 'animate__bounceOutUp' => 'bounceOutUp', |
|
360 |
+ /* Fading exits */ |
|
361 |
+ 'animate__fadeOut' => 'fadeOut', |
|
362 |
+ 'animate__fadeOutDown' => 'fadeOutDown', |
|
363 |
+ 'animate__fadeOutDownBig' => 'fadeOutDownBig', |
|
364 |
+ 'animate__fadeOutLeft' => 'fadeOutLeft', |
|
365 |
+ 'animate__fadeOutLeftBig' => 'fadeOutLeftBig', |
|
366 |
+ 'animate__fadeOutRight' => 'fadeOutRight', |
|
367 |
+ 'animate__fadeOutRightBig' => 'fadeOutRightBig', |
|
368 |
+ 'animate__fadeOutUp' => 'fadeOutUp', |
|
369 |
+ 'animate__fadeOutUpBig' => 'fadeOutUpBig', |
|
370 |
+ 'animate__fadeOutTopLeft' => 'fadeOutTopLeft', |
|
371 |
+ 'animate__fadeOutTopRight' => 'fadeOutTopRight', |
|
372 |
+ 'animate__fadeOutBottomRight' => 'fadeOutBottomRight', |
|
373 |
+ 'animate__fadeOutBottomLeft' => 'fadeOutBottomLeft', |
|
374 |
+ /* Flippers */ |
|
375 |
+ 'animate__flip' => 'flip', |
|
376 |
+ 'animate__flipInX' => 'flipInX', |
|
377 |
+ 'animate__flipInY' => 'flipInY', |
|
378 |
+ 'animate__flipOutX' => 'flipOutX', |
|
379 |
+ 'animate__flipOutY' => 'flipOutY', |
|
380 |
+ /* Lightspeed */ |
|
381 |
+ 'animate__lightSpeedInRight' => 'lightSpeedInRight', |
|
382 |
+ 'animate__lightSpeedInLeft' => 'lightSpeedInLeft', |
|
383 |
+ 'animate__lightSpeedOutRight' => 'lightSpeedOutRight', |
|
384 |
+ 'animate__lightSpeedOutLeft' => 'lightSpeedOutLeft', |
|
385 |
+ /* Rotating entrances */ |
|
386 |
+ 'animate__rotateIn' => 'rotateIn', |
|
387 |
+ 'animate__rotateInDownLeft' => 'rotateInDownLeft', |
|
388 |
+ 'animate__rotateInDownRight' => 'rotateInDownRight', |
|
389 |
+ 'animate__rotateInUpLeft' => 'rotateInUpLeft', |
|
390 |
+ 'animate__rotateInUpRight' => 'rotateInUpRight', |
|
391 |
+ /* Rotating exits */ |
|
392 |
+ 'animate__rotateOut' => 'rotateOut', |
|
393 |
+ 'animate__rotateOutDownLeft' => 'rotateOutDownLeft', |
|
394 |
+ 'animate__rotateOutDownRight' => 'rotateOutDownRight', |
|
395 |
+ 'animate__rotateOutUpLeft' => 'rotateOutUpLeft', |
|
396 |
+ 'animate__rotateOutUpRight' => 'rotateOutUpRight', |
|
397 |
+ /* Specials */ |
|
398 |
+ 'animate__hinge' => 'hinge', |
|
399 |
+ 'animate__jackInTheBox' => 'jackInTheBox', |
|
400 |
+ 'animate__rollIn' => 'rollIn', |
|
401 |
+ 'animate__rollOut' => 'rollOut', |
|
402 |
+ /* Zooming entrances */ |
|
403 |
+ 'animate__zoomIn' => 'zoomIn', |
|
404 |
+ 'animate__zoomInDown' => 'zoomInDown', |
|
405 |
+ 'animate__zoomInLeft' => 'zoomInLeft', |
|
406 |
+ 'animate__zoomInRight' => 'zoomInRight', |
|
407 |
+ 'animate__zoomInUp' => 'zoomInUp', |
|
408 |
+ /* Zooming exits */ |
|
409 |
+ 'animate__zoomOut' => 'zoomOut', |
|
410 |
+ 'animate__zoomOutDown' => 'zoomOutDown', |
|
411 |
+ 'animate__zoomOutLeft' => 'zoomOutLeft', |
|
412 |
+ 'animate__zoomOutRight' => 'zoomOutRight', |
|
413 |
+ 'animate__zoomOutUp' => 'zoomOutUp', |
|
414 |
+ /* Sliding entrances */ |
|
415 |
+ 'animate__slideInDown' => 'slideInDown', |
|
416 |
+ 'animate__slideInLeft' => 'slideInLeft', |
|
417 |
+ 'animate__slideInRight' => 'slideInRight', |
|
418 |
+ 'animate__slideInUp' => 'slideInUp', |
|
419 |
+ /* Sliding exits */ |
|
420 |
+ 'animate__slideOutDown' => 'slideOutDown', |
|
421 |
+ 'animate__slideOutLeft' => 'slideOutLeft', |
|
422 |
+ 'animate__slideOutRight' => 'slideOutRight', |
|
423 |
+ 'animate__slideOutUp' => 'slideOutUp', |
|
424 |
+ ), |
|
425 |
+ 'eval' => array('chosen' => 'true') |
|
426 |
+ ), |
|
427 |
+ 'link_text' => array( |
|
428 |
+ 'label' => array( |
|
429 |
+ 'de' => array('Button-Beschriftung', 'Button befindet sich rechts unter dem Text'), |
|
430 |
+ ), |
|
431 |
+ 'inputType' => 'text', |
|
432 |
+ 'eval' => array('allowHtml' => true), |
|
433 |
+ ), |
|
434 |
+ 'link_url' => array( |
|
435 |
+ 'label' => array('Verlinkung', 'z . B . mailto:info@gmx . de'), |
|
436 |
+ 'inputType' => 'url', |
|
437 |
+ ), |
|
438 |
+ 'link_betreff' => array( |
|
439 |
+ 'label' => array('Betreffzeile für "mailto:" - Buttons', '(optional, falls Link eine neue Email öffnen soll)'), |
|
440 |
+ 'inputType' => 'text', |
|
441 |
+ ), |
|
442 |
+ 'link_type' => array( |
|
443 |
+ 'label' => array( |
|
444 |
+ 'de' => array('Optik des Buttons', ''), |
|
445 |
+ ), |
|
446 |
+ 'inputType' => 'select', |
|
447 |
+ 'options' => array( |
|
448 |
+ 'btn-primary' => 'Hauptfarbe', |
|
449 |
+ 'btn-outline-primary' => 'Hauptfarbe(Outline)', |
|
450 |
+ 'btn-secondary' => 'Sekundär - Farbe', |
|
451 |
+ 'btn-outline-secondary' => 'Sekundär - Farbe(Outline)', |
|
452 |
+ 'btn-link with-arrow' => 'Link - Optik mit Pfeilen', |
|
453 |
+ 'btn-outline-black' => 'Transparenter Button mit schwarzer Schrift und Rahmen', 'btn-outline-white' => 'Transparenter Button mit weißer Schrift und Rahmen', |
|
454 |
+ 'btn-white' => 'Weißer Button mit schwarzer Schrift', |
|
455 |
+ ), |
|
456 |
+ 'eval' => array('tl_class' => 'w50'), |
|
457 |
+ ), |
|
458 |
+ 'link_size' => array( |
|
459 |
+ 'label' => array( |
|
460 |
+ 'de' => array('Größe des Buttons', ''), |
|
461 |
+ ), |
|
462 |
+ 'inputType' => 'select', |
|
463 |
+ 'options' => array( |
|
464 |
+ '' => 'Standard', |
|
465 |
+ 'btn-sm' => 'Klein', |
|
466 |
+ 'btn-lg' => 'Groß', |
|
467 |
+ ), |
|
468 |
+ 'eval' => array('tl_class' => 'w50'), |
|
469 |
+ ), |
|
470 |
+ ), |
|
471 |
+ ), |
|
472 |
+ |
|
473 |
+ |
|
474 |
+ 'sponsors' => array( |
|
475 |
+ 'label' => array('Logos (z. B. Sponsoren)', 'rechts unten, blendet ggf . den schließen - Button aus'), |
|
476 |
+ 'elementLabel' => ' % s . Logo', |
|
477 |
+ 'inputType' => 'list', |
|
478 |
+ 'minItems' => 0, |
|
479 |
+ 'maxItems' => 20, |
|
480 |
+ 'fields' => array( |
|
481 |
+ 'image' => array( |
|
482 |
+ 'label' => array('Bild', ''), |
|
483 |
+ 'inputType' => 'fileTree', |
|
484 |
+ 'eval' => array( |
|
485 |
+ 'multiple' => false, |
|
486 |
+ 'fieldType' => 'radio', |
|
487 |
+ 'filesOnly' => true, |
|
488 |
+ 'extensions' => 'jpg,jpeg,png,svg', |
|
489 |
+ ), |
|
490 |
+ ), |
|
491 |
+ 'link' => array( |
|
492 |
+ 'label' => array('Verlinkung', 'optional'), |
|
493 |
+ 'inputType' => 'url', |
|
494 |
+ ), |
|
495 |
+ ), |
|
496 |
+ ), |
|
497 |
+ ), |
|
498 |
+); |