2016-07-19 97 views
0

如何在沒有奏鳴曲管理員的情況下爲自定義路由設置自定義角色,但使用奏鳴曲管理菜單生成器。索納塔管理員 - 自定義菜單項角色

 sonata.admin.group.content: 
      label:   test 
      label_catalogue: test 
      icon:   '<i class="fa fa-file-text"></i>' 
      items: 
       - route:  custom_route_1 
        label:  'custom_route_1' 
       - route:  custom_route_2 
        label:  'custom_route_2' 
       - route:  custom_route_3 
        label:  'custom_route_3' 

我希望爲菜單的每個元素設置不同的角色。

回答

0

您必須在陽明代碼添加選項角色:

sonata.admin.group.content: 
     label:   test 
     label_catalogue: test 
     icon:   '<i class="fa fa-file-text"></i>' 
     items: 
      - route:  custom_route_1 
       label:  'custom_route_1' 
      - route:  custom_route_2 
       label:  'custom_route_2' 
      - route:  custom_route_3 
       label:  'custom_route_3' 
     Roles : [ROLE_X, ROLES_Y,.....] 
相關問題