| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function indexAction() |
||
| 14 | { |
||
| 15 | $title = "Home page"; |
||
| 16 | $forum = new Forum(); |
||
| 17 | $forum->setDb($this->di->get("dbqb")); |
||
| 18 | |||
| 19 | $page = $this->di->get("page"); |
||
| 20 | |||
| 21 | $page->add("home/index", [ |
||
| 22 | "items" => $forum->findAll(), |
||
| 23 | ]); |
||
| 24 | |||
| 25 | return $page->render([ |
||
| 26 | "title" => $title, |
||
| 27 | ]); |
||
| 30 |