I have a question about ACL implementation.
Is it good to maintain the ACL rules in DB? or we can create the ACL rules at file level (in one of the file) and read it from there.
As i was reading about the ACL implementation in CakePHP & other frameworks. They use both as per the requirement.
I think maintaing the rules in one file & checking it there is more feasible & faster way to retrive & maintain the complexity of the system where we have more than 200 url actions to control.
Is it right way to follow?