Conditions | 1 |
Paths | 1 |
Total Lines | 28 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public static function getBaseConfiguration() |
||
20 | { |
||
21 | return [ |
||
22 | 'config' => [ |
||
23 | 'type' => 'input', |
||
24 | 'size' => 4, |
||
25 | 'eval' => 'trim,int', |
||
26 | 'range' => [ |
||
27 | 'lower' => -100, |
||
28 | 'upper' => 100, |
||
29 | ], |
||
30 | 'wizards' => [ |
||
31 | '_DISTANCE' => '10', |
||
32 | 'focuspoint' => [ |
||
33 | 'type' => 'script', |
||
34 | 'icon' => 'EXT:focuspoint/ext_icon.svg', |
||
35 | 'module' => [ |
||
36 | 'name' => 'focuspoint', |
||
37 | ], |
||
38 | ], |
||
39 | 'slider' => [ |
||
40 | 'type' => 'slider', |
||
41 | 'step' => '1', |
||
42 | ], |
||
43 | ], |
||
44 | ], |
||
45 | ]; |
||
46 | } |
||
47 | } |
||
48 |