function flag_handler_relationship_counts::ui_name in Flag 7.2
Same name and namespace in other branches
- 6.2 includes/flag_handler_relationships.inc \flag_handler_relationship_counts::ui_name()
- 6 includes/flag_handler_relationships.inc \flag_handler_relationship_counts::ui_name()
- 7.3 includes/views/flag_handler_relationships.inc \flag_handler_relationship_counts::ui_name()
Return a string representing this handler's name in the UI.
Overrides views_handler::ui_name
File
- includes/
flag_handler_relationships.inc, line 193 - Contains various relationship handlers.
Class
- flag_handler_relationship_counts
- Specialized relationship handler associating flag counts and content.
Code
function ui_name($short = FALSE) {
// 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'],
));
}