16

特定の管理クラスの CRUD アクションを無効にする簡単な方法はありますか? たとえば、手動で追加するオプションなしで、フロントエンド経由で追加されたユーザーのリストが欲しいだけです。

4

1 に答える 1

48

あなたの管理者クラスで:

protected function configureRoutes(RouteCollection $collection)
{
    // to remove a single route
    $collection->remove('delete');
    // OR remove all route except named ones
    $collection->clearExcept(array('list', 'show'));
}

また、管理クラスの上部で routeCollection を使用します

use Sonata\AdminBundle\Route\RouteCollection;

ドキュメント : http://sonata-project.org/bundles/admin/master/doc/reference/routing.html#removing-a-single-route

于 2013-08-17T14:53:57.660 に答える