![]() |
searching user rights managment - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: searching user rights managment (/showthread.php?tid=23674) |
searching user rights managment - El Forum - 10-19-2009 [eluser]taschentuch[/eluser] hi guys im searching for a user rights managment like this: users: |userid|username |pass |groupid| |1 |taschentuch |... |1 | |2 |user2 |... |2 | groups: |groupid|name |can_create_news|can_delte_news|can_edit_news| |1 |Moderator |1 |1 |0 | |2 |SModerator|1 |1 |1 | specrights: |userid|can_edit_news|can_create_user| |1 |1 |1 | |2 |1 |1 | specrights are additional rights which are not by groups like admin,mod,smod are defined have someome something like this? searching user rights managment - El Forum - 10-19-2009 [eluser]Ben Edmunds[/eluser] I extended redux_auth to accomplish advanced rights similar to this. Not sure if there are any auth libraries with that included but you could always extend a current auth library with what you need. searching user rights managment - El Forum - 10-19-2009 [eluser]taschentuch[/eluser] hi, thx for you help can i have maybe your extrended version? searching user rights managment - El Forum - 10-19-2009 [eluser]Ben Edmunds[/eluser] It wouldn't do you much good as it is. It's rather specific right now but once I get around to making it into a correct library I might post it. Thanks, searching user rights managment - El Forum - 10-19-2009 [eluser]taschentuch[/eluser] okay im waiting for it ^^ i have a user managment like this self written but not for CI my code: Code: $userid = $_SESSION["uid"]; |