function token_info

Returns metadata describing supported tokens.

The metadata array contains token type, name, and description data as well as an optional pointer indicating that the token chains to another set of tokens. For example:

$data['types']['node'] = array(
  'name' => t('Nodes'),
  'description' => t('Tokens related to node objects.'),
);
$data['tokens']['node']['title'] = array(
  'name' => t('Title'),
  'description' => t('The title of the current node.'),
);
$data['tokens']['node']['author'] = array(
  'name' => t('Author'),
  'description' => t('The author of the current node.'),
  'type' => 'user',
);

Return value

An associative array of token information, grouped by token type.

1 call to token_info()
PluginBase::getAvailableGlobalTokens in drupal/core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php
Returns an array of available token replacements.

File

drupal/core/includes/token.inc, line 255
Drupal placeholder/token replacement system.

Code

function token_info() {
  $data =& drupal_static(__FUNCTION__);
  if (!isset($data)) {
    $data = module_invoke_all('token_info');
    drupal_alter('token_info', $data);
  }
  return $data;
}