cgView->viewPath = KERNEL_MODULES_DIR . "/menu/views/"; $this->menuService = new MenuService(); } public function actionCreate(): void { $this->cgView->render("form.php"); } #[NoReturn] public function actionAdd(): void { if (isset($_FILES['icon_file']) && $_FILES['icon_file']['error'] === UPLOAD_ERR_OK) { $file = new FileUpload($_FILES['icon_file'], ['jpg', 'jpeg', 'png']); $file->upload(); } $menuForm = new CreateMenuForm(); $menuForm->load($_REQUEST); if ($menuForm->validate()){ $menuItem = $this->menuService->create($menuForm); if ($menuItem){ $this->redirect("/admin/settings/menu/" . $menuItem->id); } } $this->redirect("/admin/settings/menu/create"); } /** * @throws Exception */ public function actionIndex($page_number = 1): void { $this->cgView->render("index.php", ['page_number' => $page_number]); } /** * @throws Exception */ public function actionView($id): void { $menuItem = Menu::find($id); if (!$menuItem){ throw new Exception(message: "The menu item not found"); } $this->cgView->render("view.php", ['menu' => $menuItem]); } /** * @throws RuntimeError * @throws SyntaxError * @throws LoaderError|Exception */ public function actionUpdate($id): void { $model = Menu::find($id); if (!$model){ throw new Exception(message: "The menu item not found"); } $this->cgView->render("form.php", ['model' => $model]); } /** * @throws Exception */ public function actionEdit($id): void { // Debug::prn($_REQUEST); // Debug::prn($_FILES); $menuItem = Menu::find($id); if (!$menuItem){ throw new Exception(message: "The menu item not found"); } if (isset($_FILES['icon_file']) && $_FILES['icon_file']['error'] === UPLOAD_ERR_OK) { $file = new FileUpload($_FILES['icon_file'], ['jpg', 'jpeg', 'png']); $file->upload(); } $menuForm = new CreateMenuForm(); $menuForm->load($_REQUEST); if ($menuForm->validate()){ $menuItem = $this->menuService->update($menuForm, $menuItem); if ($menuItem){ $this->redirect("/admin/settings/menu/" . $menuItem->id); } } $this->redirect("/admin/settings/menu/update/" . $id); } #[NoReturn] public function actionDelete($id): void { Menu::find($id)->delete(); $this->redirect("/admin/settings/menu/"); } }