You are here

function comment_activity_token_list in Activity 6.2

Implementation of hook_activity_token_list().

File

modules/comment.activity.inc, line 47
Activity definition file for comment.module

Code

function comment_activity_token_list($type = 'all') {
  if ($type == 'comment' || $type == 'all') {
    return array(
      'comment' => array(
        'activity-comment-author-link' => t('Link to the author of the comment'),
        'comment-link' => t('Link to the comment'),
      ),
    );
  }
  return array();
}