You are here

function views_handler_field_views_system_regions::document_self_tokens in Views System 7.4

Document any special tokens this field might use for itself.

Overrides views_handler_field::document_self_tokens

See also

add_self_tokens()

File

views/views_handler_field_views_system_regions.inc, line 37
Definition of views_handler_field_views_system_regions.

Class

views_handler_field_views_system_regions
Field handler to display all regions of a theme.

Code

function document_self_tokens(&$tokens) {
  $tokens['[' . $this->options['id'] . '-label' . ']'] = t('The human readable name of the region.');
  $tokens['[' . $this->options['id'] . '-name' . ']'] = t('The machine-name of the region.');
}