-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathresource.php
435 lines (411 loc) · 11.3 KB
/
resource.php
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
<?php
return [
'site' => [
/** admin/jqadm/resource/site/groups
* List of user groups that are allowed to change to different sites
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'super'],
],
'dashboard' => [
/** admin/jqadm/resource/dashboard/groups
* List of user groups that are allowed to access the dashboard
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/dashboard/key
* Shortcut key to switch to the dashboard by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'D',
],
'sales' => [
/** admin/jqadm/resource/sales/groups
* List of user groups that are allowed to access the sales submenu
*
* @param array List of user group names
* @since 2021.04
*/
'groups' => ['admin', 'editor', 'super'],
],
'order' => [
/** admin/jqadm/resource/order/groups
* List of user groups that are allowed to access the order panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/order/key
* Shortcut key to switch to the order panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'O',
],
'subscription' => [
/** admin/jqadm/resource/subscription/groups
* List of user groups that are allowed to access the subscription panel
*
* @param array List of user group names
* @since 2018.04
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/subscription/key
* Shortcut key to switch to the subscription panel by using the keyboard
*
* @param string Single character in upper case
* @since 2018.04
*/
'key' => 'X',
],
'basket' => [
/** admin/jqadm/resource/basket/groups
* List of user groups that are allowed to access the basket panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/basket/key
* Shortcut key to switch to the basket panel by using the keyboard
*
* @param string Single character in upper case
* @since 2023.10
*/
'key' => 'B',
],
'users' => [
/** admin/jqadm/resource/users/groups
* List of user groups that are allowed to access the users submenu
*
* @param array List of user group names
* @since 2021.04
*/
'groups' => ['admin', 'editor', 'super'],
],
'customer' => [
/** admin/jqadm/resource/customer/groups
* List of user groups that are allowed to access the customer panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/customer/key
* Shortcut key to switch to the user panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'U',
],
'group' => [
/** admin/jqadm/resource/group/groups
* List of user groups that are allowed to access the group panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'super'],
/** admin/jqadm/resource/group/key
* Shortcut key to switch to the group panel by using the keyboard
*
* @param string Single character in upper case
* @since 2018.07
*/
'key' => 'G',
],
'goods' => [
/** admin/jqadm/resource/goods/groups
* List of user groups that are allowed to access the goods submenu
*
* @param array List of user group names
* @since 2021.04
*/
'groups' => ['admin', 'editor', 'super'],
],
'product' => [
/** admin/jqadm/resource/product/groups
* List of user groups that are allowed to access the product panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/product/key
* Shortcut key to switch to the product panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'P',
],
'catalog' => [
/** admin/jqadm/resource/catalog/groups
* List of user groups that are allowed to access the catalog panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/catalog/key
* Shortcut key to switch to the catalog panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'C',
],
'attribute' => [
/** admin/jqadm/resource/attribute/groups
* List of user groups that are allowed to access the attribute panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/attribute/key
* Shortcut key to switch to the attribute panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'A',
],
'supplier' => [
/** admin/jqadm/resource/supplier/groups
* List of user groups that are allowed to access the supplier panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/supplier/key
* Shortcut key to switch to the supplier panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'I',
],
'marketing' => [
/** admin/jqadm/resource/marketing/groups
* List of user groups that are allowed to access the marketing submenu
*
* @param array List of user group names
* @since 2021.04
*/
'groups' => ['admin', 'editor', 'super'],
],
'coupon' => [
/** admin/jqadm/resource/coupon/groups
* List of user groups that are allowed to access the voucher panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/coupon/key
* Shortcut key to switch to the voucher panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'V',
],
'review' => [
/** admin/jqadm/resource/review/groups
* List of user groups that are allowed to access the review panel
*
* @param array List of user group names
* @since 2020.10
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/review/key
* Shortcut key to switch to the review panel by using the keyboard
*
* @param string Single character in upper case
* @since 2020.10
*/
'key' => 'R',
],
'setup' => [
/** admin/jqadm/resource/setup/groups
* List of user groups that are allowed to access the setup menu
*
* @param array List of user group names
* @since 2021.04
*/
'groups' => ['admin', 'super'],
],
'settings' => [
/** admin/jqadm/resource/settings/groups
* List of user groups that are allowed to access the settings submenu
*
* @param array List of user group names
* @since 2021.07
*/
'groups' => ['admin', 'super'],
/** admin/jqadm/resource/settings/key
* Shortcut key to switch to the rule panel by using the keyboard
*
* @param string Single character in upper case
* @since 2021.04
*/
'key' => 'T',
],
'rule' => [
/** admin/jqadm/resource/rule/groups
* List of user groups that are allowed to access the rule panel
*
* @param array List of user group names
* @since 2021.04
*/
'groups' => ['admin', 'editor', 'super'],
/** admin/jqadm/resource/rule/key
* Shortcut key to switch to the rule panel by using the keyboard
*
* @param string Single character in upper case
* @since 2021.04
*/
'key' => 'E',
],
'service' => [
/** admin/jqadm/resource/service/groups
* List of user groups that are allowed to access the service panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'super'],
/** admin/jqadm/resource/service/key
* Shortcut key to switch to the service panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'S',
],
'plugin' => [
/** admin/jqadm/resource/plugin/groups
* List of user groups that are allowed to access the plugin panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'super'],
/** admin/jqadm/resource/plugin/key
* Shortcut key to switch to the plugin panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => 'N',
],
'locale' => [
/** admin/jqadm/resource/locale/groups
* List of user groups that are allowed to access the locale panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'super'],
/** admin/jqadm/resource/locale/key
* Shortcut key to switch to the locale panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => '',
'site' => [
/** admin/jqadm/resource/locale/site/groups
* List of user groups that are allowed to access the locale site panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['super'],
/** admin/jqadm/resource/locale/site/key
* Shortcut key to switch to the locale site panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => '',
],
'language' => [
/** admin/jqadm/resource/locale/language/groups
* List of user groups that are allowed to access the locale language panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['super'],
/** admin/jqadm/resource/locale/language/key
* Shortcut key to switch to the locale language panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => '',
],
'currency' => [
/** admin/jqadm/resource/locale/currency/groups
* List of user groups that are allowed to access the locale currency panel
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['super'],
/** admin/jqadm/resource/locale/currency/key
* Shortcut key to switch to the locale currency panel by using the keyboard
*
* @param string Single character in upper case
* @since 2017.10
*/
'key' => '',
],
],
'type' => [
/** admin/jqadm/resource/type/groups
* List of user groups that are allowed to access the type panels
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'super'],
],
'log' => [
/** admin/jqadm/resource/log/groups
* List of user groups that are allowed to view the log messages
*
* @param array List of user group names
* @since 2018.04
*/
'groups' => ['admin', 'super'],
/** admin/jqadm/resource/log/key
* Shortcut key to switch to the log panel by using the keyboard
*
* @param string Single character in upper case
* @since 2018.04
*/
'key' => 'L',
],
'language' => [
/** admin/jqadm/resource/language/groups
* List of user groups that are allowed to switch languages
*
* @param array List of user group names
* @since 2017.10
*/
'groups' => ['admin', 'editor', 'super'],
],
];