You are here

function og_activity_token_list in Heartbeat 6.4

Same name and namespace in other branches
  1. 6.3 modules/og_activity/og_activity.module \og_activity_token_list()

Implementation of hook_token_list().

File

modules/og_activity/og_activity.module, line 88

Code

function og_activity_token_list($type = 'all') {
  if ($type == 'node' || $type == 'all') {
    $tokens['node']['ogname-title-link'] = t('title of top group with a link to it.');
    return $tokens;
  }
}