menuService = new MenuService(); } /** * @throws \Exception */ public function init(): void { $this->menuService->createItem([ "label" => "Темы админпанели", "url" => "/admin/settings/admin-themes", "slug" => "admin-themes", "parent_slug" => "settings" ]); } public function deactivate(): void { $this->menuService->removeItemBySlug("admin-themes"); } }