You are here

function views_handler_field_system_info_settings::document_self_tokens in Views System 7.3

Document any special tokens this field might use for itself.

Overrides views_handler_field::document_self_tokens

See also

add_self_tokens()

File

views/handlers/views_handler_field_system_info_settings.inc, line 67
Views field handler for the views_system module.

Class

views_handler_field_system_info_settings
Provides display options and renders the settings field of the system item.

Code

function document_self_tokens(&$tokens) {
  $tokens['[' . $this->options['id'] . '-name' . ']'] = t('The name of the setting.');
  $tokens['[' . $this->options['id'] . '-value' . ']'] = t('The value of the setting.');
}