| 1 | <?php |
||
| 13 | class PageController extends BaseController |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Render a HabboWEB Page |
||
| 17 | * |
||
| 18 | * @param string $pageCategory |
||
| 19 | * @param string $pageFile |
||
| 20 | * @return Response |
||
| 21 | */ |
||
| 22 | public function show(string $pageCategory, string $pageFile): Response |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Render a HabboWEB Page |
||
| 31 | * |
||
| 32 | * @param string $pageCategory |
||
| 33 | * @param string $subCategory |
||
| 34 | * @param string $pageFile |
||
| 35 | * @return Response |
||
| 36 | */ |
||
| 37 | public function showWithSub(string $pageCategory, string $subCategory, string $pageFile): Response |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Get Client View |
||
| 46 | * |
||
| 47 | * @param Request $request |
||
| 48 | * @param string $clientType |
||
| 49 | * @return Response |
||
| 50 | */ |
||
| 51 | public function getClient(Request $request, $clientType): Response |
||
| 57 | } |
||
| 58 |