menuService = new MenuService(); } public function init(): void { $this->menuService->createItem([ "label" => "Посты", "url" => "/admin/post", "slug" => "post", ]); } public function deactivate(): void { $this->menuService->removeItemBySlug("post"); } }