News Feed
Jobs Feed
Sections




News Archive
Developer.com:
Creating a Custom ACL in PHP
May 11, 2012 @ 10:53:23

On Developer.com there's a recent tutorial showing you how to create a basic access control list in PHP (not in any specific framework). It allows you to define not only user permissions but groups and group permissions as well.

So, what are the advantages of an ACL model? The first advantage is security. Using this model will make your application more secure and less vulnerable to exploits. When securing any program, it is good to give to the user only the privileges he/she needs. That means that, for example, you should not give super administrator privileges to someone who will only manage website content. The ACL security model allows you to do just that. The second advantage is the easiness of user management. You can divide users into groups, while each group has certain access permissions. Also, you can easily add new user groups, delete the old ones or change group permissions.

They include the database structure you'll need to make the backend work (four tables) and the code to create an "Acl" class with methods to check a user+group for a permission, get the permissions for a user and get the permissions for a group. It's a pretty simple system and has a lot more that could be added to it to make it more robust, but it's a good start.

0 comments voice your opinion now!
custom acl access control permission group tutorial database


blog comments powered by Disqus

Similar Posts

Freeaqingme's Blog: PHP, JS & Service layers: Blend like never before

Melvin Rivera's Blog: Creating a custom WordPress database error page

PHPFreaks.com: Basic Pagination

Rob Allen's Blog: Custom Zend_Application Resources

php|architect: Geolocation: Easier Than It Looks


Community Events









Don't see your event here?
Let us know!


framework release testing code opinion composer interview tool object zendframework2 conference language community podcast example development introduction functional event api

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework