You are here

function flag_handler_relationship_counts::ui_name in Flag 6

Same name and namespace in other branches
  1. 6.2 includes/flag_handler_relationships.inc \flag_handler_relationship_counts::ui_name()
  2. 7.3 includes/views/flag_handler_relationships.inc \flag_handler_relationship_counts::ui_name()
  3. 7.2 includes/flag_handler_relationships.inc \flag_handler_relationship_counts::ui_name()

File

includes/flag_handler_relationships.inc, line 118
Contains various relationship handlers.

Class

flag_handler_relationship_counts
Specialized relationship handler associating flag counts and content.

Code

function ui_name() {

  // We put the bookmark name in the UI string to save space.
  return t('!group: !title counter', array(
    '!group' => $this->definition['group'],
    '!title' => $this->options['flag'],
  ));
}