You are here

function notifications_digest_token_list in Notifications 6.4

Implementation of hook_token_list().

File

notifications_digest/notifications_digest.module, line 343
Notifications digest module

Code

function notifications_digest_token_list($type = 'all') {
  $tokens = array();
  if ($type == 'events' || $type == 'all') {
    $tokens['events']['events-list'] = t('List of events for message digests');
    $tokens['events']['events-detail'] = t('Detailed information for list of events');
  }
  return $tokens;
}