PluginProbe
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO / 1.4.14
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO v1.4.14
1.4.14 1.4.13 1.4.12 1.4.11 1.4.10 1.4.9 1.4.8 1.4.7 1.4.6 1.4.5 1.4.4 1.4.3 1.4.2 1.4.1 1.4.0 1.3.54 1.3.53 1.3.52 1.3.51 1.3.50 1.3.49 1.3.48 1.3.47 1.3.46 1.3.45 All 177 releases
disco / backend / views / components / Main / data / allConditions.js

allConditions.js in Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO 1.4.14, at backend/views/components/Main/data/allConditions.js

100 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 const allConditions = [
2 {
3 id: 1,
4 condition_name: 'include',
5 title: 'Include',
6 },
7 {
8 id: 2,
9 condition_name: 'exclude',
10 title: 'Exclude',
11 },
12 {
13 id: 3,
14 condition_name: 'contain',
15 title: 'Contain',
16 },
17 {
18 id: 4,
19 condition_name: 'not_contain',
20 title: 'Does Not Contain',
21 },
22 {
23 id: 5,
24 condition_name: 'equal',
25 title: 'Equal',
26 },
27 {
28 id: 6,
29 condition_name: 'not_equal',
30 title: 'Not Equal',
31 },
32 {
33 id: 7,
34 condition_name: 'greater',
35 title: 'Greater Than',
36 },
37 {
38 id: 8,
39 condition_name: 'greater_equal',
40 title: 'Greater Than or Equal',
41 },
42 {
43 id: 9,
44 condition_name: 'lesser',
45 title: 'Less Than',
46 },
47 {
48 id: 10,
49 condition_name: 'lesser_equal',
50 title: 'Less Than or Equal',
51 },
52 {
53 id: 11,
54 condition_name: 'between',
55 title: 'Between',
56 },
57 {
58 id: 12,
59 condition_name: 'date_between',
60 title: 'Date Between',
61 },
62 {
63 id: 13,
64 condition_name: 'within_past',
65 title: 'Within Past',
66 },
67 {
68 id: 14,
69 condition_name: 'earlier_than',
70 title: 'Earlier Than',
71 },
72 {
73 id: 15,
74 condition_name: 'yes',
75 title: 'Yes',
76 },
77 {
78 id: 16,
79 condition_name: 'no',
80 title: 'No',
81 },
82 {
83 id: 17,
84 condition_name: 'all_time',
85 title: 'All Time',
86 },
87 {
88 id: 18,
89 condition_name: 'before',
90 title: 'Before',
91 },
92 {
93 id: 19,
94 condition_name: 'after',
95 title: 'After',
96 },
97 ];
98
99 export default allConditions;
100