You are here

function flag_handler_relationship_content::admin_summary in Flag 6.2

Same name and namespace in other branches
  1. 6 includes/flag_handler_relationships.inc \flag_handler_relationship_content::admin_summary()
  2. 7.3 includes/views/flag_handler_relationships.inc \flag_handler_relationship_content::admin_summary()
  3. 7.2 includes/flag_handler_relationships.inc \flag_handler_relationship_content::admin_summary()

File

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

Class

flag_handler_relationship_content
Specialized relationship handler associating flags and content.

Code

function admin_summary() {
  return $this->options['user_scope'] == 'current' ? t('by current user') : t('by any user');
}