You are here

function user_activity_token_list in Activity 6.2

Implementation of hook_activity_token_list().

File

modules/user.activity.inc, line 22
Activity definition file for user.module

Code

function user_activity_token_list($type = 'all') {
  if ($type == 'user' || $type == 'all') {
    return array(
      'user' => array(
        'activity-user-link' => t('Link to the user. Used only when doing user based activity (i.e \'login\' \'update\' etc)'),
      ),
    );
  }
  return array();
}