You are here

function views_handler_field_views_system_required_by::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_required_by.inc, line 37
Definition of views_handler_field_views_system_required_by.

Class

views_handler_field_views_system_required_by
Field handler to display all other items that depends on this item.

Code

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