Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In reference to my other question, I'm looking for a good php-based ACL class that I can integrate into ExpressionEngine to get better support for member access control.

So far I'm looking at the Zend Framework ACL class. Is anyone using anything else they recommend?

Thanks!

share|improve this question

closed as not constructive by Tim Post Jun 11 '12 at 8:30

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

Zend_Acl is a nice one. Two others I've worked with in the past and were effective are Tackle and phpGACL. Check them out.

share|improve this answer
Though this is a bit dated of a question, I was wondering if you could shed some light on experience with the 3 mentioned: Zend, Tackle, phpGACL? We have a IT management system which has manages all of this and we are building an external web service based application to mash up this data but want to enforce roles/permissions in similar fashion to the IT management system without re-writing too much of it. – Chris Jan 26 '11 at 18:45

Having looked at Zend_Acl, I found it to be lacking somewhat in terms of usability. Unless I am mistaken, you are only able to create access controls for specific types of pages, not granular down to specific resources.

Have not played with Tackle, but did look at phpGACL, and found it difficult to understand well enough to implement (not to mention lack of updates makes me think the project is dead).

Edit: I have pushed my ACL class live, and it is available here: https://github.com/bendauphinee/ACLayer

share|improve this answer
Are you going to open-source your code :P? => github.com? – Alfred Jan 31 '11 at 0:27
@Alfred When I get a chance to yes, also, have to learn git :) – Ben Dauphinee Feb 1 '11 at 15:48
1  
@Alfred Pushed it live if you want at it. – Ben Dauphinee Feb 6 '11 at 17:45
very good. To be honest I don't think am I going to use it, because I am in love with node.js now. But this might be very useful for other PHP developers. Thank you :P – Alfred Feb 6 '11 at 17:53

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