You are here

function node_activity_token_list in Activity 6.2

Implementation of hook_activity_token_list().

File

modules/node.activity.inc, line 18
Activity definition file for node.module

Code

function node_activity_token_list($type = 'all') {
  if ($type == 'node' || $type == 'all') {
    return array(
      'node' => array(
        'activity-node-link' => t('Link to the node'),
        'activity-node-creator-link' => t('Link to the node creator'),
      ),
    );
  }
  return array();
}