| 1 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
$GLOBALS['Versandarten']['unfrei'][0] = array
|
|
|
4 |
(
|
|
|
5 |
"var Versandarten= new Array(
|
|
|
6 |
new Array(\"nix\",\"Bitte w�hlen Sie eine Zahlungsart aus\"),
|
|
|
7 |
new Array(5385,\"Nachnahme/Versand 10,00 �\"), // VN Nachnahme/Versand
|
|
|
8 |
new Array(5387,\"Vorkasse/Versand 7,50 �\"), // VN2 Vorkasse/Versand
|
|
|
9 |
new Array(5392,\"Bankeinzug/Versand 7,50 �\") // VN7 Barzahlung/Versand
|
|
|
10 |
//new Array(6053,\"PayPal/Versand 7,50 �\") // VN9 PayPal/Versand
|
|
|
11 |
);"
|
|
|
12 |
);
|
|
|
13 |
$GLOBALS['Versandarten']['unfrei'][1] = array
|
|
|
14 |
(
|
|
|
15 |
"var v_matrix=new Array
|
|
|
16 |
(
|
|
|
17 |
// keine Auswahl
|
|
|
18 |
new Array(\"0\"),
|
|
|
19 |
|
|
|
20 |
// Vorkasse
|
|
|
21 |
new Array(\"2\", \"3\"),
|
|
|
22 |
|
|
|
23 |
// Nachnahme
|
|
|
24 |
new Array(\"1\"),
|
|
|
25 |
|
|
|
26 |
// Bankeinzug / Barzahlung
|
|
|
27 |
new Array(\"4\")
|
|
|
28 |
|
|
|
29 |
//PayPal
|
|
|
30 |
//new Array(\"5\")
|
|
|
31 |
);"
|
|
|
32 |
);
|
|
|
33 |
$GLOBALS['Versandarten']['frei'][0] = array
|
|
|
34 |
(
|
|
|
35 |
"var Versandarten= new Array(
|
|
|
36 |
new Array(\"nix\",\"Bitte w�hlen Sie eine Zahlungsart aus\"),
|
|
|
37 |
new Array(5386,\"Nachnahme/Versand Frei 0,00 �\"), // VN1 Nachnahme/Versand Frei
|
|
|
38 |
new Array(5388,\"Vorkasse/Versand Frei 0,00 �\"), // VN3 Vorkasse/Versand Frei
|
|
|
39 |
new Array(5389,\"Vorkasse/Abholung Frei 0,00 �\"), // VN4 Vorkasse/Abholung
|
|
|
40 |
new Array(5393,\"Bankeinzug/Versand Frei 0,00 �\") // VN8 Barzahlung/Versand Frei
|
|
|
41 |
//new Array(6054,\"PayPal/Versand Frei 0,00 �\") // VN5 Zahlung per PayPal / Versand frei
|
|
|
42 |
);"
|
|
|
43 |
);
|
|
|
44 |
$GLOBALS['Versandarten']['frei'][1] = array
|
|
|
45 |
(
|
|
|
46 |
"var v_matrix=new Array
|
|
|
47 |
(
|
|
|
48 |
// keine Auswahl
|
|
|
49 |
new Array(\"0\"),
|
|
|
50 |
|
|
|
51 |
// Vorkasse
|
|
|
52 |
new Array(\"2\"),
|
|
|
53 |
|
|
|
54 |
// Nachnahme
|
|
|
55 |
new Array(\"1\"),
|
|
|
56 |
|
|
|
57 |
// Bankeinzug / Barzahlung
|
|
|
58 |
new Array(\"3\")
|
|
|
59 |
|
|
|
60 |
//PayPal
|
|
|
61 |
//new Array(\"4\")
|
|
|
62 |
);"
|
|
|
63 |
);
|
|
|
64 |
$GLOBALS['paypalEnable'] = true;
|
|
|
65 |
?>
|