web-dev-qa-db-ja.com

ソナタ管理バンドルCRUDでアクションを無効にする

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

15

管理者クラス:

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

46
rpg600