CodeIgniter Forums
Admin Module - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: Installation & Setup (https://forum.codeigniter.com/forumdisplay.php?fid=9)
+--- Thread: Admin Module (/showthread.php?tid=69732)



Admin Module - rahulss - 01-10-2018

how to make backend (admin-module) in codeigniter. please suggest me correct way to set up admin module.


RE: Admin Module - dmyers - 01-11-2018

rahulss, currently there is no standard admin-module but, you can add a few open source things together to get this.

I would start with Bootstrap CSS http://getbootstrap.com/docs/3.3/ for your "GUI" because it probably has everything you need built in.

Then for the PHP side you can add Ion Auth 2 https://github.com/benedmunds/CodeIgniter-Ion-Auth or Community Auth https://community-auth.com/ both great packages for authorization/access control.

There is also the decent ci_bootstrap_3 (starter) https://github.com/waifung0207/ci_bootstrap_3 which includes Ben Edmunds package.

I hope it sends you in the right direction.

DMyers