function realtime_og_user_delete_action in Node.js integration 6
Callback to handle nodejs notification when a user leave a group.
File
- nodejs_actions/
nodejs_actions.module, line 294
Code
function realtime_og_user_delete_action($hook, $context = array()) {
$link = l($context['user']->name, 'user/' . $context['user']->uid);
$group = l($context['node']->title, 'node/' . $context['node']->nid);
$body = t('This user !link has removed his membership to the group !group.', array(
'!link' => $link,
'!group' => $group,
));
nodejs_actions_enqueue_message(t('Group activity'), $body);
}