| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | 1 | public function main() |
|
| 28 | { |
||
| 29 | 1 | global $phpbb_container; |
|
| 30 | |||
| 31 | /** @var \phpbb\ads\controller\ucp_controller $ucp_controller */ |
||
| 32 | 1 | $ucp_controller = $phpbb_container->get('phpbb.ads.ucp.controller'); |
|
| 33 | |||
| 34 | // Make the $u_action url available in the UCP controller |
||
| 35 | 1 | $ucp_controller->set_page_url($this->u_action); |
|
| 36 | |||
| 37 | // Load a template |
||
| 38 | 1 | $this->tpl_name = 'ucp_ads_stats'; |
|
| 39 | |||
| 40 | // Set the page title for our UCP page |
||
| 41 | 1 | $this->page_title = 'UCP_PHPBB_ADS_STATS'; |
|
| 42 | |||
| 43 | 1 | $ucp_controller->main(); |
|
| 44 | 1 | } |
|
| 46 |