You are here

function og_workflow_ng_events_argument_og_user in Organic groups 5.7

Same name and namespace in other branches
  1. 5.8 og_workflow_ng.inc \og_workflow_ng_events_argument_og_user()
  2. 5 og_workflow_ng.inc \og_workflow_ng_events_argument_og_user()
  3. 5.3 og_workflow_ng.inc \og_workflow_ng_events_argument_og_user()

handler to get user

1 string reference to 'og_workflow_ng_events_argument_og_user'
og_workflow_ng_events_hook_og_arguments in ./og_workflow_ng.inc
Describes the arguments available for the og hook

File

./og_workflow_ng.inc, line 50
workflow_ng integration for og module

Code

function og_workflow_ng_events_argument_og_user($uid, $gid) {
  return user_load(array(
    'uid' => $uid,
  ));
}