Find users by role
-
Hello, I’ve got a little coding question.
I created a function on add form action to fill a list of users but I would like to filter only users with subscriber role. I could I add this filter ? Here’s my initial code:
private function set_users() { $this->load_model('User'); $users = $this->User->find(array('selects' => array('ID','display_name'))); $this->set('users', $users); }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Find users by role’ is closed to new replies.