You are here

function flag_handler_relationship::get_flag_type in Flag 7.2

Same name and namespace in other branches
  1. 6.2 includes/flag_handler_relationships.inc \flag_handler_relationship::get_flag_type()
  2. 7.3 includes/views/flag_handler_relationships.inc \flag_handler_relationship::get_flag_type()
1 call to flag_handler_relationship::get_flag_type()
flag_handler_relationship::get_flag in includes/flag_handler_relationships.inc
Returns the flag object.

File

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

Class

flag_handler_relationship
Base class for all our relationship classes.

Code

function get_flag_type() {
  return isset($this->definition['flag type']) ? $this->definition['flag type'] : NULL;
}