You are here

public function views_handler_field_profile_list::document_self_tokens in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 modules/profile/views_handler_field_profile_list.inc \views_handler_field_profile_list::document_self_tokens()
  2. 6.2 modules/profile/views_handler_field_profile_list.inc \views_handler_field_profile_list::document_self_tokens()

Document any special tokens this field might use for itself.

Overrides views_handler_field::document_self_tokens

See also

add_self_tokens()

File

modules/profile/views_handler_field_profile_list.inc, line 41
Definition of views_handler_field_profile_list.

Class

views_handler_field_profile_list
Field handler display a profile list item.

Code

public function document_self_tokens(&$tokens) {
  $tokens['[' . $this->options['id'] . '-item' . ']'] = t('The text of the profile item.');
}