Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function findAllNavigationPage(): array |
||
34 | { |
||
35 | $query = $this->getEntityManager()->getConnection()->prepare("SELECT p.id, p.url, p.title, p.title_tag FROM navigation n |
||
36 | INNER JOIN page p ON n.id_page = p.id AND p.displayed = 1 |
||
37 | ORDER BY n.order ASC |
||
38 | "); |
||
39 | |||
40 | $query->execute(); |
||
41 | |||
42 | return $query->fetchAll(\PDO::FETCH_ASSOC); |
||
43 | } |
||
45 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.