-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinfo.xml
1150 lines (1141 loc) · 65.2 KB
/
info.xml
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="ISO-8859-1"?>
<jtlshop3plugin>
<Name>Mollie</Name>
<Description>Mollie Payment Plugin</Description>
<Author>WebStollen GmbH</Author>
<URL>https://www.webstollen.de</URL>
<XMLVersion>102</XMLVersion>
<PluginID>ws_mollie</PluginID>
<Shop4Version>406</Shop4Version>
<Install>
<Version nr="100">
<SQL>100.sql</SQL>
<CreateDate>2019-02-11</CreateDate>
</Version>
<Version nr="107">
<SQL>107.sql</SQL>
<CreateDate>2020-03-02</CreateDate>
</Version>
<Version nr="109">
<SQL>109.sql</SQL>
<CreateDate>2020-08-17</CreateDate>
</Version>
<Version nr="110">
<CreateDate>2020-11-19</CreateDate>
</Version>
<Version nr="111">
<CreateDate>2021-01-11</CreateDate>
</Version>
<Version nr="200">
<SQL>200.sql</SQL>
<CreateDate>2021-04-22</CreateDate>
</Version>
<Version nr="201">
<CreateDate>2021-04-23</CreateDate>
</Version>
<Version nr="202">
<CreateDate>2021-05-06</CreateDate>
</Version>
<Version nr="203">
<CreateDate>2021-06-08</CreateDate>
<SQL>203.sql</SQL>
</Version>
<Version nr="204">
<CreateDate>2021-06-10</CreateDate>
<SQL>204.sql</SQL>
</Version>
<Version nr="205">
<CreateDate>2021-08-25</CreateDate>
<SQL>205.sql</SQL>
</Version>
<Version nr="206">
<CreateDate>2022-01-11</CreateDate>
</Version>
<Version nr="207">
<CreateDate>2022-06-10</CreateDate>
</Version>
<Version nr="208">
<CreateDate>2022-09-19</CreateDate>
</Version>
<Hooks>
<Hook id="75">75_bestellungInDb.php</Hook>
<Hook id="131">131_globalinclude.php</Hook>
<Hook id="132">132_headPostGet.php</Hook>
<Hook id="140">140_smarty.php</Hook>
<Hook id="180">180_checkbox.php</Hook>
<Hook id="181">181_sync.php</Hook>
<Hook id="210">210_storno.php</Hook>
</Hooks>
<JS>
<file>
<name>applePay.js</name>
<priority>5</priority>
<position>body</position>
</file>
</JS>
<Adminmenu>
<Customlink sort="10">
<Name>Bestellungen</Name>
<Filename>orders.php</Filename>
</Customlink>
<Customlink sort="20">
<Name>Zahlungsarten</Name>
<Filename>paymentmethods.php</Filename>
</Customlink>
<Customlink sort="999">
<Name>Info</Name>
<Filename>info.php</Filename>
</Customlink>
<Settingslink sort="998">
<Name>Einstellungen</Name>
<Setting type="text" initialValue="" sort="10" conf="Y">
<Name>Live API Key:</Name>
<Description>Füge hier deinen Mollie API Key ein</Description>
<ValueName>api_key</ValueName>
</Setting>
<Setting type="text" initialValue="" sort="11" conf="Y">
<Name>Test API Key:</Name>
<Description>Füge hier deinen Mollie API Key ein</Description>
<ValueName>test_api_key</ValueName>
</Setting>
<Setting type="selectbox" initialValue="N" sort="12" conf="Y">
<Name>Test API als Admin</Name>
<Description>Wenn diese Einstellung aktiviert ist, wird im Shop automatisch die Test-API verwendet,
wenn man als Admin im Backend eingeloggt ist.
</Description>
<ValueName>testAsAdmin</ValueName>
<SelectboxOptions>
<Option value="N" sort="1"><![CDATA[Nein]]></Option>
<Option value="Y" sort="2"><![CDATA[Ja]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="text" initialValue="Order {orderNumber}" sort="13" conf="Y">
<Name>Payment API Beschreibung</Name>
<Description>Beschreibung der Zahlung in Mollie. Folgende Variablen stehen zur Verfügung:
{orderNumber}, {storeName}, {customer.firstname}, {customer.lastname}, {customer.company}
</Description>
<ValueName>paymentDescTpl</ValueName>
</Setting>
<Setting type="zahl" initialValue="0" sort="70" conf="Y">
<Name>Zahlungserinnerung</Name>
<Description>Soll bei fehlgeschlagener Zahlung ein Zahlungslink verschickt werden? Angabe in Minuten
nach Bestellung. (0 = deaktiviert)
</Description>
<ValueName>reminder</ValueName>
</Setting>
<Setting type="zahl" initialValue="0" sort="71" conf="Y">
<Name>Unbezahlte Bestellungen stornieren</Name>
<Description>Soll bei fehlgeschlagener Zahlung die Bestellung storniert werden? Angabe in Stunden
nach Bestellung. (0 = deaktiviert)
</Description>
<ValueName>autoStorno</ValueName>
</Setting>
<Setting type="selectbox" initialValue="C" sort="80" conf="Y">
<Name>Kunden bei Mollie anlegen (Customer API)</Name>
<Description>Wenn diese Einstellung aktiviert ist, hat der Kunde die Möglichkeit, per Checkbox,
seine Kundendaten bei Mollie zu speichern. Z.B. für Single-Click Checkout benötigt.
</Description>
<ValueName>useCustomerAPI</ValueName>
<SelectboxOptions>
<Option value="C" sort="1"><![CDATA[Ja, Checkbox]]></Option>
<Option value="N" sort="2"><![CDATA[Nein]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="text" initialValue="" sort="15" conf="Y">
<Name>Profile ID:</Name>
<Description>Füge hier deinen Mollie Profil ID (pfl_) ein. Wird benötigt um Mollie Components zu
aktivieren
</Description>
<ValueName>profileId</ValueName>
</Setting>
<Setting type="selectbox" initialValue="Y" sort="16" conf="Y">
<Name>Zahlungsart zurücksetzen</Name>
<Description>Versucht, nach fehlgeschlagener oder abgebrochener Zahlung, die Zahlungsart bei Mollie
zurückzusetzen
</Description>
<ValueName>resetMethod</ValueName>
<SelectboxOptions>
<Option value="N" sort="1"><![CDATA[Nein]]></Option>
<Option value="Y" sort="2"><![CDATA[Ja]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="Y" sort="50" conf="Y">
<Name>Nur bezahlte Bestellungen in die WAWI übertragen</Name>
<Description>Wenn diese Einstellung deaktiviert ist, können alle Bestellungen direkt von der WAWI
abgerufen werden.
</Description>
<ValueName>onlyPaid</ValueName>
<SelectboxOptions>
<Option value="Y" sort="1"><![CDATA[Ja]]></Option>
<Option value="N" sort="2"><![CDATA[Nein]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="B" sort="50" conf="Y">
<Name>Teilversand Verhalten</Name>
<Description>Bei Gastbestellungen und Teilversand.</Description>
<ValueName>shippingMode</ValueName>
<SelectboxOptions>
<Option value="A" sort="1"><![CDATA[Direkt alles versenden]]></Option>
<Option value="B" sort="2"><![CDATA[Erst bei komplett Versand versenden]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="Y" sort="51" conf="Y">
<Name>Versand bei Mollie</Name>
<Description>Soll Versandinformation für OrderAPI Methoden an Mollie gesendet werden?.</Description>
<ValueName>shippingActive</ValueName>
<SelectboxOptions>
<Option value="Y" sort="1"><![CDATA[Ja]]></Option>
<Option value="K" sort="2"><![CDATA[Nur Kunden & Komplettversand]]></Option>
<Option value="N" sort="3"><![CDATA[Nein, ich mache alles manuell.]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="N" sort="52" conf="Y">
<Name>Tracking URL den Versandinformationen anfügen?</Name>
<Description>
<![CDATA[Soll die Tracking URL für OrderAPI Methoden an Mollie gesendet werden?
Achtung wenn die Tracking URL nicht im korrekt URL Format ist, wird dies von mollie abgelehnt. In diesem Fall kann der gesamte Versandstatus nicht an mollie übergeben werden.]]>
</Description>
<ValueName>trackingActive</ValueName>
<SelectboxOptions>
<Option value="N" sort="1"><![CDATA[Nein]]></Option>
<Option value="Y" sort="2"><![CDATA[Ja]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="N" sort="40" conf="Y">
<Name>Bestellungen automatisch stornieren</Name>
<Description>Wenn diese Einstellung aktiviert ist, werden komplett Stornierte Bestellungen auch bei
Mollie storniert oder rückerstattet.
</Description>
<ValueName>autoRefund</ValueName>
<SelectboxOptions>
<Option value="Y" sort="1"><![CDATA[Ja]]></Option>
<Option value="N" sort="2"><![CDATA[Nein]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="Y" sort="90" conf="Y">
<Name>Bestellabschluss</Name>
<Description>Hier kann das Bestellabschluss-Verhalten eingestellt werden.</Description>
<ValueName>checkoutMode</ValueName>
<SelectboxOptions>
<Option value="Y" sort="1"><![CDATA[Direkt weiterleiten]]></Option>
<Option value="D" sort="2"><![CDATA[Nach 3 Sekunden weiterleiten]]></Option>
<Option value="N" sort="2"><![CDATA[Nicht automatisch weiterleiten]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="de_DE" sort="60" conf="Y">
<Name>Fallback-Locale</Name>
<Description>Fallback, falls Locale nicht erkannt oder nicht vorhanden.</Description>
<ValueName>fallbackLocale</ValueName>
<SelectboxOptions>
<Option value="en_US" sort="1"><![CDATA[en_US]]></Option>
<Option value="nl_NL" sort="2"><![CDATA[nl_NL]]></Option>
<Option value="nl_BE" sort="3"><![CDATA[nl_BE]]></Option>
<Option value="fr_FR" sort="4"><![CDATA[fr_FR]]></Option>
<Option value="fr_BE" sort="5"><![CDATA[fr_BE]]></Option>
<Option value="de_DE" sort="6"><![CDATA[de_DE]]></Option>
<Option value="de_AT" sort="7"><![CDATA[de_AT]]></Option>
<Option value="de_CH" sort="8"><![CDATA[de_CH]]></Option>
<Option value="es_ES" sort="9"><![CDATA[es_ES]]></Option>
<Option value="ca_ES" sort="10"><![CDATA[ca_ES]]></Option>
<Option value="pt_PT" sort="11"><![CDATA[pt_PT]]></Option>
<Option value="it_IT" sort="12"><![CDATA[it_IT]]></Option>
<Option value="nb_NO" sort="13"><![CDATA[nb_NO]]></Option>
<Option value="sv_SE" sort="14"><![CDATA[sv_SE]]></Option>
<Option value="fi_FI" sort="15"><![CDATA[fi_FI]]></Option>
<Option value="da_DK" sort="16"><![CDATA[da_DK]]></Option>
<Option value="is_IS" sort="17"><![CDATA[is_IS]]></Option>
<Option value="hu_HU" sort="18"><![CDATA[hu_HU]]></Option>
<Option value="pl_PL" sort="19"><![CDATA[pl_PL]]></Option>
<Option value="lv_LV" sort="20"><![CDATA[lv_LV]]></Option>
<Option value="lt_LT" sort="21"><![CDATA[lt_LT]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="N" sort="30" conf="Y">
<Name>Checkout Styles laden</Name>
<Description>Lädt Stylesheets für das Evo Template, um den Checkout zu verschönern.</Description>
<ValueName>load_styles</ValueName>
<SelectboxOptions>
<Option value="N" sort="1"><![CDATA[Nein]]></Option>
<Option value="Y" sort="2"><![CDATA[Ja, nur Mollie]]></Option>
<Option value="A" sort="3"><![CDATA[Ja, alle]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="N" sort="40" conf="Y">
<Name>Artikel mit rationalen Stückzahlen</Name>
<Description>Artikel mit rationalen Stückzahlen werden dann unterstützt, jedoch als ein Artikel
behandelt. KEIN Teilversand hierfür möglich!
</Description>
<ValueName>supportQ</ValueName>
<SelectboxOptions>
<Option value="Y" sort="1"><![CDATA[Ja, Mollie hier anbieten]]></Option>
<Option value="N" sort="2"><![CDATA[Nein, Mollie hier nicht anbieten]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="ord_tr" sort="100" conf="Y">
<Name>TransaktionsID des Zahlungseingangs:</Name>
<Description>Welche ID soll an die WAWI übetragen werden? Bei PayPal wird immer die PayPal Referenz
angegeben.
</Description>
<ValueName>wawiPaymentID</ValueName>
<SelectboxOptions>
<Option value="ord" sort="1"><![CDATA[Order ID]]></Option>
<Option value="tr" sort="2"><![CDATA[Payment ID]]></Option>
<Option value="ord_tr" sort="3"><![CDATA[Order ID / Payment ID]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="text" initialValue="" sort="110" conf="Y">
<Name>Workflow-Secret:</Name>
<Description>Schlüssel, um die WAWI Workflow-Requests zu authentifizieren.</Description>
<ValueName>workflowSecret</ValueName>
</Setting>
</Settingslink>
</Adminmenu>
<Locales>
<Variable>
<Name>skipComponentsLink</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[überspringen und später eingeben]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[skip and enter later]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[sauter et entrer plus tard]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[salta ed entra più tardi]]></VariableLocalized>
</Variable>
<Variable>
<Name>cctitle</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[Zahlungsinformationen]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[Enter your payment information]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[Informations de paiement]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[Informazioni sulla Carta di Credito]]></VariableLocalized>
</Variable>
<Variable>
<Name>error_canceled</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[Die Zahlung wurde von Ihnen abgebrochen. Wählen Sie ggf. eine andere
Zahlart aus.
]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[
You canceled the payment. Please select a different payment method if necessary.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
Votre paiement a été annulé. Veuillez sélectionner un autre mode de paiement si nécessaire.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[
Hai annullato il pagamento. Se necessario, scegli un metodo di pagamento diverso.]]></VariableLocalized>
</Variable>
<Variable>
<Name>error_expired</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[Ihre Zahlungssession ist abgelaufen, bitte versuchen Sie es erneut.
]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[
Your payment session has expired, please try again.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
Votre session de paiement a expiré, s'il vous plaît essayer à nouveau.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[
La tua sessione di pagamento è scaduta, riprovi.]]></VariableLocalized>
</Variable>
<Variable>
<Name>error_open</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[Bei der Zahlung ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut,
oder wählen Sie eine andere Zahlungsart.
]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[
The payment process failed. Please try again or choose a different payment method.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
Une erreur s'est produite lors du paiement. Veuillez réessayer ou choisir un autre mode de paiement.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[
Si è verificato un errore con il pagamento. Riprovi o scegli un metodo di pagamento diverso.]]></VariableLocalized>
</Variable>
<Variable>
<Name>error_failed</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[Bei der Zahlung ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut,
oder wählen Sie eine andere Zahlungsart.
]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[
The payment process failed. Please try again or choose a different paymentmethod.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
Une erreur s'est produite lors du paiement. Veuillez réessayer ou choisir un autre mode de paiement.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[
Si è verificato un errore con il pagamento. Riprovi o scegli un metodo di pagamento diverso.]]></VariableLocalized>
</Variable>
<Variable>
<Name>error_create</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[
Bei der Zahlung ist ein Fehler aufgetreten. Bitte nehmen Sie mit uns Kontakt auf.]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[
The payment process failed. Please contact us.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
Une erreur s'est produite lors du paiement. Contactez nous s'il vous plait.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[
Si è verificato un errore con il pagamento. Ci contatti per favore.]]></VariableLocalized>
</Variable>
<Variable>
<Name>lbl_cardHolder</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[Karteninhaber:]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[Card holder:]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[Titulaire de la carte:]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[Titolare della Carta:]]></VariableLocalized>
</Variable>
<Variable>
<Name>lbl_cardNumber</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[Kartennummer:]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[Card number:]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[Numéro de carte:]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[Numero Carta:]]></VariableLocalized>
</Variable>
<Variable>
<Name>lbl_expiryDate</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[Ablaufdatum:]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[Expiry date:]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[Date d'expiration:]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[Data scadenza:]]></VariableLocalized>
</Variable>
<Variable>
<Name>lbl_varificationCode</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[CVC/CVV:]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[CVC/CVV:]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[CVC/CVV:]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[CVC/CVV:]]></VariableLocalized>
</Variable>
<Variable>
<Name>cvchint_1</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[So findet man die CVV/CVC Nummer]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[How to find the CVV/CVC number]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[Comment trouver le numéro CVC/CVV]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[Cosi trovi il numero CVV/CVC]]></VariableLocalized>
</Variable>
<Variable>
<Name>cvchint_2</Name>
<Description></Description>
<VariableLocalized iso="GER"><![CDATA[Die dreistellige CVV/CVC Nummer wird bei Visa und Mastercard auf der Rückseite,
bei American Express auf der Vorderseite der Karte abgebildet.
]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[
The three-digit CVV/CVC number is shown on the reverse for Visa and Mastercard, and on the front of the card for American Express.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
Le numéro CVC/CVV à trois chiffres est indiqué au dos de Visa et Mastercard et au recto de la carte American Express.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[
Il numero CVV/CVC trovi nelle Carte VISA e MASTERCARD sul Retro, nella Carta American Express trovi sulla parte anteriore.]]></VariableLocalized>
</Variable>
<Variable>
<Name>mcErrorMessage</Name>
<Description>Ein oder mehrere Felder sind ungültig.</Description>
<VariableLocalized iso="GER"><![CDATA[Ein oder mehrere Felder sind ungültig.]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[One or more fields are invalid.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[Un ou plusieurs champs ne sont pas valides.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[Uno o più Campi non sono validi.]]></VariableLocalized>
</Variable>
<Variable>
<Name>clearDescr</Name>
<Description>Kreditkarte: Token bereits vorhanden</Description>
<VariableLocalized iso="GER"><![CDATA[
Sie haben bereits Daten hinterlegt. Möchten Sie diese ändern?]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[
You have already entered data. Would you like to change this?]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
Vous avez déjà saisi des données. Souhaitez-vous changer cela?]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[Hai già inserito i dati. Vuoi cambiarli?]]></VariableLocalized>
</Variable>
<Variable>
<Name>clearButton</Name>
<Description>Kreditkarte: Token löschen</Description>
<VariableLocalized iso="GER"><![CDATA[Daten ändern]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[Edit Data]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[changer les données]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[Cambiare Dati]]></VariableLocalized>
</Variable>
<Variable>
<Name>errAlreadyPaid</Name>
<Description>Wenn die Bestellung bereits bezahlt ist</Description>
<VariableLocalized iso="GER"><![CDATA[Diese Bestellung ist bereits bezahlt.]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[This order has already been paid for.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[Cette commande a déjà été payée.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[Questo ordine è già stato pagato.]]></VariableLocalized>
</Variable>
<Variable>
<Name>errOrderNotFound</Name>
<Description>Wenn Bestellung nicht gefunden wurde.</Description>
<VariableLocalized iso="GER"><![CDATA[
Die Bestellung konnte leider nicht gefunden werden, wenden Sie sich ggf. an unseren Support.]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[
The order could not be found, please contact our support if necessary.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
La commande n'a pas pu être trouvée, veuillez contacter notre support si nécessaire.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[
Impossibile trovare l'ordine, contatta il nostro supporto se necessario.]]></VariableLocalized>
</Variable>
<Variable>
<Name>checkboxText</Name>
<Description>Text der Checkbox, um einen Kunden bei Mollie anzulegen</Description>
<VariableLocalized iso="GER"><![CDATA[
Zahlungsinformationen beim Anbieter speichen]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[Save payment information with the provider]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
Enregistrer les informations de paiement avec le fournisseur]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[
Salva le informazioni di pagamento con il provider]]></VariableLocalized>
</Variable>
<Variable>
<Name>checkboxDescr</Name>
<Description>Beschreibung der Checkbox, um einen Kunden bei Mollie anzulegen</Description>
<VariableLocalized iso="GER"><![CDATA[
Dies kann den Bestellvorgang bei der nächsten Bestellung beschleunigen.]]></VariableLocalized>
<VariableLocalized iso="ENG"><![CDATA[
This can speed up the process for the next order.]]></VariableLocalized>
<VariableLocalized iso="FRE"><![CDATA[
Cela peut accélérer le processus pour la prochaine commande.]]></VariableLocalized>
<VariableLocalized iso="ITA"><![CDATA[
Questo può accelerare il processo di ordinazione per l'ordine successivo.]]></VariableLocalized>
</Variable>
</Locales>
<PaymentMethod>
<Method>
<Name>Mollie</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>1</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>0</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollie.php</ClassFile>
<ClassName>JTLMollie</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>Mollie</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit verschiedenen Zahlungsmethoden.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="10" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="20" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie Kreditkarte</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>3</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>CREDIT_CARD</TSCode>
<PreOrder>0</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieCreditCard.php</ClassFile>
<ClassName>JTLMollieCreditCard</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<AdditionalTemplateFile>tpl/mollieComponents.tpl</AdditionalTemplateFile>
<MethodLanguage iso="GER">
<Name>Kreditkarte</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit Kreditkarte.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="S" sort="30" conf="Y">
<Name>Mollie Components</Name>
<Description><![CDATA[Wenn diese Einstellung aktiviert ist, werden die Kreditkarten ggf. bereits im Shop
abgefragt. Klicke <a href="https://www.mollie.com/en/news/post/better-checkout-flows-with-mollie-components" target="_blank">hier</a> für weitere Informationen]]></Description>
<ValueName>components</ValueName>
<SelectboxOptions>
<Option value="S" sort="1"><![CDATA[Ja, optional]]></Option>
<Option value="Y" sort="2"><![CDATA[Ja, obligatorisch]]></Option>
<Option value="N" sort="3"><![CDATA[Nein]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="S" sort="35" conf="Y">
<Name>Trustgrafik anzeigen</Name>
<Description>Bindet eine Trust-Grafik unterhalb des Kreditkartenformulars ein.</Description>
<ValueName>loadTrust</ValueName>
<SelectboxOptions>
<Option value="N" sort="1"><![CDATA[Nein]]></Option>
<Option value="Y" sort="2"><![CDATA[Ja]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie Apple Pay</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>3</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>0</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieApplePay.php</ClassFile>
<ClassName>JTLMollieApplePay</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>Apple Pay</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit Apple Pay.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie Bancontact</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>4</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieBancontact.php</ClassFile>
<ClassName>JTLMollieBancontact</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>Bancontact</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit Bancontact.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie Banktransfer</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>5</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>0</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieBanktransfer.php</ClassFile>
<ClassName>JTLMollieBanktransfer</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>SEPA Überweisung</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit SEPA Überweisung.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="50" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Überweisung zu tätigen?</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie Belfius</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>6</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieBelfius.php</ClassFile>
<ClassName>JTLMollieBelfius</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>Belfius</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit Belfius.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie EPS</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>2</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieEPS.php</ClassFile>
<ClassName>JTLMollieEPS</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>EPS</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit EPS.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie Giftcard</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>8</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>0</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieGiftcard.php</ClassFile>
<ClassName>JTLMollieGiftcard</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>Gift cards</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit Gift cards.</InfoText>
</MethodLanguage>
</Method>
<Method>
<Name>Mollie Giropay</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>9</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>GIROPAY</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieGiropay.php</ClassFile>
<ClassName>JTLMollieGiropay</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>Giropay</Name>
<ChargeName>mMllie</ChargeName>
<InfoText>Bezahlen Sie bequem mit Giropay.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie iDEAL</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>10</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieIDEAL.php</ClassFile>
<ClassName>JTLMollieIDEAL</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>iDEAL</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit iDEAL.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie KBC</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>12</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieKBC.php</ClassFile>
<ClassName>JTLMollieKBC</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>KBC</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit KBC.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie PayPal</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>13</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>PAYPAL</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMolliePayPal.php</ClassFile>
<ClassName>JTLMolliePayPal</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>PayPal</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit PayPal.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie paysafecard</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>14</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>OTHER</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMolliePaysafecard.php</ClassFile>
<ClassName>JTLMolliePaysafecard</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>paysafecard</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit paysafecard.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie SOFORT</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>15</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>DIRECT_E_BANKING</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieSofort.php</ClassFile>
<ClassName>JTLMollieSofort</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>SOFORT</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit SOFORT.</InfoText>
</MethodLanguage>
<Setting type="selectbox" initialValue="order" sort="40" conf="Y">
<Name>API</Name>
<Description><![CDATA[Welche API soll verwendet werden? Klicke <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">hier</a> für mehr Informationen.]]></Description>
<ValueName>api</ValueName>
<SelectboxOptions>
<Option value="order" sort="1"><![CDATA[Order API]]></Option>
<Option value="payment" sort="2"><![CDATA[Payment API]]></Option>
</SelectboxOptions>
</Setting>
<Setting type="zahl" initialValue="100" sort="45" conf="Y">
<Name>Gültigkeit in Tagen</Name>
<Description>Wie lange hat der Kunde Zeit die Bestellung zu bezahlen? (Order API)</Description>
<ValueName>dueDays</ValueName>
</Setting>
</Method>
<Method>
<Name>Mollie Klarna Pay Later</Name>
<PictureURL>img/method/[email protected]</PictureURL>
<Sort>16</Sort>
<SendMail>1</SendMail>
<Provider>mollie.com</Provider>
<TSCode>INVOICE</TSCode>
<PreOrder>1</PreOrder>
<Soap>0</Soap>
<Curl>1</Curl>
<Sockets>0</Sockets>
<ClassFile>JTLMollieKlarnaPayLater.php</ClassFile>
<ClassName>JTLMollieKlarnaPayLater</ClassName>
<TemplateFile>tpl/bestellabschluss.tpl</TemplateFile>
<MethodLanguage iso="GER">
<Name>Klarna Pay Later</Name>
<ChargeName>Mollie</ChargeName>
<InfoText>Bezahlen Sie bequem mit Klarna Pay Later.</InfoText>
</MethodLanguage>