You are here

function _cas_token_list in CAS 6.3

Implements hook_token_list().

1 call to _cas_token_list()
cas_token_list in ./cas.module
Implements hook_token_list().

File

./cas.tokens.inc, line 11
Token module integration.

Code

function _cas_token_list($type = 'all') {
  $tokens = array();
  if ($type == 'cas' || $type == 'all') {
    $tokens['cas']['cas-name'] = t('The CAS username.');

    // $tokens['cas']['cas-name-raw'] = t('The CAS username.');
  }
  return $tokens;
}