What's the best way to implement ACL in CodeIgniter?
- DB based roles, groups, user persmissions?
- Create a library?
Here is what we're working with:
Articles, Authors
There are two types of author:
- Normal author (can only see his own articles).
- Author that is also an admin (can see all articles and approves other author's articles).
Considering the functionality will expand (more features that will need permission restriction for types of authors), what is the best way to do ACL in CodeIgniter?