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