You are here

function views_handler_field_views_system_stylesheets::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_stylesheets.inc, line 40
Definition of views_handler_field_views_system_stylesheets.

Class

views_handler_field_views_system_stylesheets
Field handler to display all stylesheets of an item.

Code

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