Skip to content

Instantly share code, notes, and snippets.

@cosmicdreams
Created December 18, 2015 16:36
Show Gist options
  • Save cosmicdreams/5ed91bff176128f91311 to your computer and use it in GitHub Desktop.
Save cosmicdreams/5ed91bff176128f91311 to your computer and use it in GitHub Desktop.
protected function query() {
// Get the default query and modify it
$query = parent::query();
$query->join('users_roles', 'ur', 'u.uid = ur.uid');
$query->condition('u.uid', "sammy");
return $query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment