Skip to content

Instantly share code, notes, and snippets.

@gbaldera
Forked from benedmunds/gist:2415063
Created April 18, 2012 18:06
Show Gist options
  • Save gbaldera/2415483 to your computer and use it in GitHub Desktop.
Save gbaldera/2415483 to your computer and use it in GitHub Desktop.
Ion Auth - get users groups
$this->data['users'] = $this->ion_auth->users()->result();
foreach ($this->data['users'] as $k => $user)
{
$this->data['users'][$k]->groups = $this->ion_auth->get_users_groups($user->id)->result();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment