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