Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
26 | 1 | public function get_config(array $settings) |
|
27 | { |
||
28 | 1 | $menu_options = $this->get_menu_options(); |
|
29 | |||
30 | return array( |
||
31 | 1 | 'legend1' => 'SETTINGS', |
|
32 | 1 | 'menu_id' => array('lang' => 'MENU', 'validate' => 'int', 'type' => 'select', 'options' => $menu_options, 'default' => 0, 'explain' => false), |
|
33 | 1 | ); |
|
34 | } |
||
35 | |||
63 |