-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuttons.php
56 lines (55 loc) · 2.08 KB
/
buttons.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
<?php
return [
'buttonGroups' => [
'position' => [
'name' => 'Position',
'buttons' => [
'left-top' => [
'image' => '@config/buttons/images/left-top.svg',
'title' => 'Top left',
'value' => 'left-top',
],
'center-top' => [
'image' => '@config/buttons/images/center-top.svg',
'title' => 'Top center',
'value' => 'center-top',
],
'right-top' => [
'image' => '@config/buttons/images/right-top.svg',
'title' => 'Top right',
'value' => 'right-top',
],
'left-middle' => [
'image' => '@config/buttons/images/left-middle.svg',
'title' => 'Middle left',
'value' => 'left-middle',
],
'center-middle' => [
'image' => '@config/buttons/images/center-middle.svg',
'title' => 'Middle center',
'value' => 'center-middle',
],
'right-middle' => [
'image' => '@config/buttons/images/right-middle.svg',
'title' => 'Middle right',
'value' => 'right-middle',
],
'left-bottom' => [
'image' => '@config/buttons/images/left-bottom.svg',
'title' => 'Bottom left',
'value' => 'left-bottom',
],
'center-bottom' => [
'image' => '@config/buttons/images/center-bottom.svg',
'title' => 'Bottom center',
'value' => 'center-bottom',
],
'right-bottom' => [
'image' => '@config/buttons/images/right-bottom.svg',
'title' => 'Bottom right',
'value' => 'right-bottom',
],
],
],
],
];