function flag_handler_relationship_content::ui_name in Flag 7.3
Same name and namespace in other branches
- 6.2 includes/flag_handler_relationships.inc \flag_handler_relationship_content::ui_name()
- 6 includes/flag_handler_relationships.inc \flag_handler_relationship_content::ui_name()
- 7.2 includes/flag_handler_relationships.inc \flag_handler_relationship_content::ui_name()
Return a string representing this handler's name in the UI.
Overrides views_handler::ui_name
File
- includes/
views/ flag_handler_relationships.inc, line 148 - Contains various relationship handlers.
Class
- flag_handler_relationship_content
- Views relationship handler associating flags and content.
Code
function ui_name($short = FALSE) {
// We put the bookmark name in the UI string to save space.
return t('!group: !title', array(
'!group' => $this->definition['group'],
'!title' => empty($this->options['flag']) ? t('(Please select a flag)') : $this->options['flag'],
));
}