menuService = new MenuService(); } /** * @throws \Exception */ public function init(): void { $this->menuService->createItem([ "label" => "Опции", "url" => "/admin/option", "slug" => "option" ]); } public function deactivate(): void { $this->menuService->removeItemBySlug("option"); } }