-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextas.json
215 lines (215 loc) · 6.93 KB
/
extas.json
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
{
"name": "extas/conditions",
"conditions": [
{
"name": "and",
"title": "And",
"description": "Logical multiplication",
"class": "extas\\components\\conditions\\ConditionAnd",
"aliases": ["&", "&&"]
},
{
"name": "empty",
"title": "Empty value",
"description": "Is empty value",
"class": "extas\\components\\conditions\\ConditionEmpty",
"aliases": ["@", "null"]
},
{
"name": "equal",
"title": "Arithmetic equal",
"description": "Arithmetic equal compare",
"class": "extas\\components\\conditions\\ConditionEqual",
"aliases": ["=", "eq"]
},
{
"name": "equal_alphabet",
"title": "Alphabet equal",
"description": "Alphabet equal compare",
"class": "extas\\components\\conditions\\ConditionEqualAlphabet",
"aliases": ["a=", "aeq", "aequal"]
},
{
"name": "equal_length",
"title": "Equal by length",
"description": "By length equal compare",
"class": "extas\\components\\conditions\\ConditionEqualLength",
"aliases": ["l=", "leq", "lequal"]
},
{
"name": "greater",
"title": "Arithmetic greater",
"description": "Arithmetic greater compare",
"class": "extas\\components\\conditions\\ConditionGreater",
"aliases": [">", "gt"]
},
{
"name": "greater_alphabet",
"title": "Alphabet greater",
"description": "Alphabet greater compare",
"class": "extas\\components\\conditions\\ConditionGreaterAlphabet",
"aliases": ["a>", "agt", "agreater"]
},
{
"name": "greater_length",
"title": "Greater by length",
"description": "By length greater compare",
"class": "extas\\components\\conditions\\ConditionGreaterLength",
"aliases": ["l>", "lgt", "lgreater"]
},
{
"name": "greater_or_equal",
"title": "Arithmetic greater or equal",
"description": "Arithmetic greater or equal compare",
"class": "extas\\components\\conditions\\ConditionGreaterOrEqual",
"aliases": [">=", "gte", "gteq"]
},
{
"name": "greater_or_equal_alphabet",
"title": "Alphabet greater or equal",
"description": "Alphabet greater or equal compare",
"class": "extas\\components\\conditions\\ConditionGreaterOrEqualAlphabet",
"aliases": ["a>=", "agte", "agteq", "agreater_or_equal"]
},
{
"name": "greater_or_equal_length",
"title": "Greater or equal by length",
"description": "By length greater or equal compare",
"class": "extas\\components\\conditions\\ConditionGreaterOrEqualLength",
"aliases": ["l>=", "lgte", "lgteq", "lgreater_or_equal"]
},
{
"name": "in",
"title": "One of (IN)",
"description": "One of a list",
"class": "extas\\components\\conditions\\ConditionIn",
"aliases": ["*"]
},
{
"name": "like",
"title": "Like",
"description": "Like",
"class": "extas\\components\\conditions\\ConditionLike",
"aliases": ["~"]
},
{
"name": "like_on_in",
"title": "Like one of (IN)",
"description": "Like one of a list",
"class": "extas\\components\\conditions\\ConditionLikeOneIn",
"aliases": ["~*", "like_in"]
},
{
"name": "lower",
"title": "Arithmetic lower",
"description": "Arithmetic lower compare",
"class": "extas\\components\\conditions\\ConditionLower",
"aliases": ["<", "lt"]
},
{
"name": "lower_alphabet",
"title": "Alphabet lower",
"description": "Alphabet lower compare",
"class": "extas\\components\\conditions\\ConditionLowerAlphabet",
"aliases": ["a<", "alt", "alower"]
},
{
"name": "lower_length",
"title": "Lower by length",
"description": "By length lower compare",
"class": "extas\\components\\conditions\\ConditionLowerLength",
"aliases": ["l<", "llt", "llower"]
},
{
"name": "lower_or_equal",
"title": "Arithmetic lower or equal",
"description": "Arithmetic lower or equal compare",
"class": "extas\\components\\conditions\\ConditionLowerOrEqual",
"aliases": ["<=", "lte"]
},
{
"name": "lower_or_equal_alphabet",
"title": "Alphabet lower or equal",
"description": "Alphabet lower or equal compare",
"class": "extas\\components\\conditions\\ConditionLowerOrEqualAlphabet",
"aliases": ["a<=", "alte", "alower_or_equal"]
},
{
"name": "lower_or_equal_length",
"title": "Lower or equal by length",
"description": "By length lower or equal compare",
"class": "extas\\components\\conditions\\ConditionLowerOrEqualLength",
"aliases": ["l<=", "llte", "llower_or_equal"]
},
{
"name": "not_empty",
"title": "Not empty",
"description": "Not empty value",
"class": "extas\\components\\conditions\\ConditionNotEmpty",
"aliases": ["!null", "!@", "!empty"]
},
{
"name": "not_equal",
"title": "Not equal",
"description": "Arithmetic not equal compare",
"class": "extas\\components\\conditions\\ConditionNotEqual",
"aliases": ["!=", "!eq", "!equal"]
},
{
"name": "not_equal_alphabet",
"title": "Not equal by alphabet",
"description": "Alphabet not equal compare",
"class": "extas\\components\\conditions\\ConditionNotEqualAlphabet",
"aliases": ["a!=", "a!eq", "a!equal", "anot_equal"]
},
{
"name": "not_equal_length",
"title": "Not equal by length",
"description": "By length not equal compare",
"class": "extas\\components\\conditions\\ConditionNotEqualLength",
"aliases": ["l!=", "l!eq", "l!equal", "lnot_equal"]
},
{
"name": "not_in",
"title": "Not in",
"description": "Not one of a list",
"class": "extas\\components\\conditions\\ConditionNotIn",
"aliases": ["!*", "nin", "!in"]
},
{
"name": "not_like",
"title": "Not like",
"description": "Not like",
"class": "extas\\components\\conditions\\ConditionNotLike",
"aliases": ["!~", "nlike", "!like"]
},
{
"name": "not_like_one_in",
"title": "Not like one in",
"description": "Not like one of a list",
"class": "extas\\components\\conditions\\ConditionNotLikeOneIn",
"aliases": ["!~*", "nlike_one_in", "!like_one_in", "not_like_in"]
},
{
"name": "not_regex",
"title": "Not regex",
"description": "Not as regular expression",
"class": "extas\\components\\conditions\\ConditionNotRegEx",
"aliases": ["!#", "!regexp", "!regex", "not_regexp"]
},
{
"name": "or",
"title": "Or",
"description": "Logical addition",
"class": "extas\\components\\conditions\\ConditionOr",
"aliases": ["|", "||"]
},
{
"name": "regex",
"title": "RegEx",
"description": "Regular expression",
"class": "extas\\components\\conditions\\ConditionRegEx",
"aliases": ["#", "regexp"]
}
]
}