1 | <?php |
||
11 | class PageController extends BaseController |
||
12 | { |
||
13 | /** |
||
14 | * Render a HabboWEB Page. |
||
15 | * |
||
16 | * @param string $pageCategory |
||
17 | * @param string $pageFile |
||
18 | * |
||
19 | * @return Response |
||
20 | */ |
||
21 | public function show(string $pageCategory, string $pageFile): Response |
||
27 | |||
28 | /** |
||
29 | * Render a HabboPage. |
||
30 | * |
||
31 | * @WARNING: Categories can still be pages |
||
32 | * |
||
33 | * @param string $category |
||
34 | * @param string $page |
||
35 | * |
||
36 | * @return Response |
||
37 | */ |
||
38 | public function habboPage(string $category, string $page = '') |
||
42 | } |
||
43 |