You are here

function notifications_token_info in Notifications 7

Implements hook_token_info().

File

./notifications.module, line 1314
Notifications module

Code

function notifications_token_info() {
  $info['tokens']['user']['unsubscribe-url'] = array(
    'name' => t("Unsubscribe URL"),
    'description' => t("Signed URL for cancelling all user subscriptions."),
  );
  return $info;
}