| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function treeAction() |
||
| 25 | { |
||
| 26 | $pages = $this->getDoctrine() |
||
| 27 | ->getRepository($this->container->getParameter('pwc.entity_page')) |
||
| 28 | ->getPagesWithoutParent(); |
||
| 29 | |||
| 30 | return $this->renderWithExtraParams('@PiedWebCMS/admin/page_treeView.html.twig', [ |
||
| 31 | 'pages' => $pages, |
||
| 32 | 'list' => $this->admin->getList(), |
||
| 33 | 'admin' => $this->admin, |
||
| 34 | 'base_template' => $this->getBaseTemplate(), |
||
| 35 | 'action' => 'list', |
||
| 36 | ]); |
||
| 39 |