starsinmypockets
starsinmypockets

Reputation: 2294

ACL implementation with Codeigniter / Ion Auth

Is there any ACL implementation written for Ion Auth, or that would be easily integrated with Ion Auth?

Upvotes: 2

Views: 4768

Answers (4)

user2906216
user2906216

Reputation: 1

weblogics created this type of system based on Ion Auth as an extension.

Hope this helps or for a jump start in getting this into Ion Auth so far its been working great but not much documenations on use

Codeigniter-Ion-Auth-ACL

Upvotes: 0

Ben Edmunds
Ben Edmunds

Reputation: 878

Check out Ion Auth v2, taken some big steps towards extendability:

http://github.com/benedmunds/CodeIgniter-Ion-Auth/tree/2

Upvotes: 3

DLo
DLo

Reputation: 41

There currently is none. the is_group() function is a start, but users can only belong to 1 group at the moment. Permission inheritance / member of multiple groups is not yet included in the roadmap to my knowledge.

Head over to https://github.com/benedmunds/CodeIgniter-Ion-Auth and check out the latest. Fork it! And contribute your changes to the community....

Upvotes: 1

No Results Found
No Results Found

Reputation: 102745

You can use is_group() to check the user's group and take appropriate action, but beyond that there currently is no access control or user based permissions built into Ion Auth, and I'm not aware of any that would be easier to integrate into Ion Auth than another system - but you can certainly use Ion Auth as a starting point to building your own.

Upvotes: 3

Related Questions