CodeIgniter Forums
How do i create Access Control List in CI - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: How do i create Access Control List in CI (/showthread.php?tid=65140)



How do i create Access Control List in CI - nkhan - 05-04-2016

Hi, Guys 

I want create a module where super admin can assign the access of  different menus ( such as blog, profile, categories , products ) with  three 

methods(actions) View , update, delete action .

Example :

If admin assign  Mr.x to view  the category then he  must be able to view the category but he are not allow to add /delete category.

I am not looking for Role Based Access Control List (RBCL).



Please forgive me if you facing problems to read. 

Thanks .


RE: How do i create Access Control List in CI - arma7x - 05-04-2016

(05-04-2016, 09:20 PM)nkhan Wrote: Hi, Guys 

I want create a module where super admin can assign the access of  different menus ( such as blog, profile, categories , products ) with  three 

methods(actions) View , update, delete action .

Example :

If admin assign  Mr.x to view  the category then he  must be able to view the category but he are not allow to add /delete category.

I am not looking for Role Based Access Control List (RBCL).



Please forgive me if you facing problems to read. 

Thanks .
You can try using Community Auth


RE: How do i create Access Control List in CI - nkhan - 05-05-2016

@arma7x

Thanks