function views_token_info

Implements hook_token_info().

File

./views.tokens.inc, line 11

Code

function views_token_info() {
    $info['types']['view'] = array(
        'name' => t('View'),
        'description' => t('Tokens related to views.'),
        'needs-data' => 'view',
    );
    $info['tokens']['view']['name'] = array(
        'name' => t('Name'),
        'description' => t('The human-readable name of the view.'),
    );
    $info['tokens']['view']['description'] = array(
        'name' => t('Description'),
        'description' => t('The description of the view.'),
    );
    $info['tokens']['view']['machine-name'] = array(
        'name' => t('Machine name'),
        'description' => t('The machine-readable name of the view.'),
    );
    $info['tokens']['view']['title'] = array(
        'name' => t('Title'),
        'description' => t('The title of current display of the view.'),
    );
    $info['tokens']['view']['url'] = array(
        'name' => t('URL'),
        'description' => t('The URL of the view.'),
        'type' => 'url',
    );
    return $info;
}