I'm learning the framework, and now building an application using it.
I need to get all users that have 'user' or 'staff' role, but I couldn't find about it on the documentation.
Help anyone? (I think it's more an ORM problem the the auth module)
|
I'm learning the framework, and now building an application using it. I need to get all users that have 'user' or 'staff' role, but I couldn't find about it on the documentation. Help anyone? (I think it's more an ORM problem the the auth module) | |||
|
feedback
|
|
I didn't find an easy way to do this using the ORM, but I have a workaround.
| |||||
feedback
|
|
May be you should create a separate ORM method for it? Something like this code:
$roles is a role_id array (not names!). PS. I dont remember how to query 'WHERE IN', so I use DB expressions. | |||||||
feedback
|