1

我需要清理管理端,使其适合我的客户的需要。

我正在使用 Sonata 的 NewsBundle,实际上我不需要使用评论,所以我想从管理端删除它。至少从菜单上看。有没有办法在配置中禁用它?我在文档中没有找到任何关于此的提示。

这里是我不想再看到它的特定区域:

奏鸣曲菜单

奏鸣曲菜单

顺便说一下,菜单可能是由 KnpMenu 生成的

4

1 回答 1

5

要自定义仪表板和侧面菜单中显示的组,您需要编辑app/config/config.yml

sonata_admin: dashboard: ... groups: sonata_blog: label: sonata_content label_catalogue: SonataNewsBundle icon: '<i class="fa fa-th"></i>' items: # - sonata.news.admin.comment - sonata.news.admin.post
sonata.admin.group.classification: label: sonata_classification label_catalogue: SonataClassificationBundle icon: '<i class="fa fa-sitemap"></i>' items: - sonata.classification.admin.category - sonata.classification.admin.tag - sonata.classification.admin.collection ...

于 2015-03-30T08:18:12.433 回答