| Conditions | 2 |
| Paths | 2 |
| Total Lines | 16 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function main() |
||
| 29 | { |
||
| 30 | global $phpbb_container; |
||
| 31 | |||
| 32 | $this->tpl_name = 'acp_abbc3_settings'; |
||
| 33 | $this->page_title = 'ACP_ABBC3_SETTINGS'; |
||
| 34 | |||
| 35 | try |
||
| 36 | { |
||
| 37 | $phpbb_container->get('vse.abbc3.acp_controller') |
||
| 38 | ->set_u_action($this->u_action) |
||
| 39 | ->handle(); |
||
| 40 | } |
||
| 41 | catch (\RuntimeException $e) |
||
| 42 | { |
||
| 43 | trigger_error($e->getMessage() . adm_back_link($this->u_action), $e->getCode()); |
||
|
|
|||
| 44 | } |
||
| 47 |