PluginProbe ʕ •ᴥ•ʔ
VikAppointments Services Booking Calendar / 1.2.21
VikAppointments Services Booking Calendar v1.2.21
1.2.21 1.2.20 trunk 1.2.17 1.2.18 1.2.19
vikappointments / site / helpers / libraries / import / forms / coupons.xml
vikappointments / site / helpers / libraries / import / forms Last commit date
columns 4 days ago cities.xml 4 days ago coupons.xml 4 days ago customers.xml 4 days ago empgroups.xml 4 days ago employees.xml 4 days ago groups.xml 4 days ago index.html 4 days ago locations.xml 4 days ago optiongroups.xml 4 days ago options.xml 4 days ago reviews.xml 4 days ago services.xml 4 days ago states.xml 4 days ago
coupons.xml
77 lines
1 <?xml version="1.0" encoding="utf-8"?>
2 <importable>
3
4 <table name="#__vikappointments_coupon" id="coupon">
5
6 <column
7 name="code"
8 label="VAPMANAGECOUPON2"
9 required="1"
10 filter="alnum"
11 />
12
13 <column
14 name="type"
15 label="VAPMANAGECOUPON3"
16 required="0"
17 default="1"
18 filter="uint"
19 >
20 <option value="1">VAPCOUPONTYPEOPTION1</option>
21 <option value="2">VAPCOUPONTYPEOPTION2</option>
22 </column>
23
24 <column
25 name="percentot"
26 label="VAPMANAGECOUPON4"
27 required="0"
28 default="2"
29 filter="uint"
30 >
31 <option value="1">VAPCOUPONVALUETYPE1</option>
32 <option value="2">VAPCOUPONVALUETYPE2</option>
33 </column>
34
35 <column
36 name="value"
37 label="VAPMANAGECOUPON5"
38 required="0"
39 filter="float"
40 />
41
42 <column
43 name="mincost"
44 label="VAPMANAGECOUPON6"
45 required="0"
46 filter="float"
47 type="currency"
48 />
49
50 <column
51 name="dstart"
52 label="VAPMANAGECOUPON7"
53 required="0"
54 default="-1"
55 filter="string"
56 type="date"
57 >
58 <option value="-1">/</option>
59 </column>
60
61 <column
62 name="dend"
63 label="VAPMANAGECOUPON8"
64 required="0"
65 default="-1"
66 filter="string"
67 type="date"
68 >
69 <option value="-1">/</option>
70 </column>
71
72 </table>
73
74 <cancel task="coupon.cancel" />
75
76 </importable>
77