You are here

function views_handler_field_profile_list::document_self_tokens in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 modules/profile/views_handler_field_profile_list.inc \views_handler_field_profile_list::document_self_tokens()
  2. 7.3 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() for details.

File

modules/profile/views_handler_field_profile_list.inc, line 28

Class

views_handler_field_profile_list
Field handler display a profile list item.

Code

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