The title already says it: can someone tell me how to get all entities of one type which are marked with "EDIT" ACL permission? I would like to build a query with the Doctrine EntityManager.

link|improve this question

80% accept rate
1  
Did you ever find a solution to this problem? – Problematic Aug 5 '11 at 20:52
2  
feedback

2 Answers

I am new to Symfony 2 but i faced the same problem, so i came up with a solution and it is working perfectly fine for me, please look at this gist. ACLHelper

This is working well for me, i tested this with a large database, and the response time is also good from mysql

link|improve this answer
feedback

My approach would be:

  1. get a list of the entity ids (with your requirements as parameters) from the acl
  2. get the list of entities where the list is a subset of the first (ids of the first list)
  3. make that generic

I have not seen yet a satisfying solution. I will update here if I find one.

see also Querying + ACL - Google Groups

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.