function og_context_handler_user_view in Organic groups 7
Same name and namespace in other branches
- 7.2 og_context/og_context.module \og_context_handler_user_view()
Context handler; Get groups from user view.
1 string reference to 'og_context_handler_user_view'
- og_context_og_context_negotiation_info in og_context/
og_context.module - Implements hook_og_context_negotiation_info().
File
- og_context/
og_context.module, line 527 - Get a group from a viewed page.
Code
function og_context_handler_user_view() {
global $user;
return _group_context_handler_entity('user', $user);
}