Reputation: 18064
Following this entry in the cookbook, the ACL system is easy to implement for an entity: http://symfony.com/doc/current/cookbook/security/acl.html
Ok, now let's say that I delete the entity (I mean, a row of my database). Why are ACL still there? How could I delete its related ACL to maintain my database clean?
Upvotes: 9
Views: 1787
Reputation: 18064
After research, I have found a clean solution that works:
$aclProvider = $this->get('security.acl.provider');
$objectIdentity = ObjectIdentity::fromDomainObject($entity);
$aclProvider->deleteAcl($objectIdentity);
Upvotes: 11