Symfony2,Sonata:从奏鸣曲包产生的菜单中删除一个动作

时间:2015-03-30 07:49:45

标签: symfony sonata-admin sonata knpmenubundle knpmenu

我需要清理管理员端,以满足我的客户需求。

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

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

Sonata menu

Sonata menu

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

1 个答案:

答案 0 :(得分: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 ...