You are here

function flag_flag::get_views_info in Flag 7.3

Same name and namespace in other branches
  1. 5 flag.inc \flag_flag::get_views_info()
  2. 6.2 flag.inc \flag_flag::get_views_info()
  3. 6 flag.inc \flag_flag::get_views_info()
  4. 7.2 flag.inc \flag_flag::get_views_info()

Returns information needed for Views integration. E.g., the Views table holding the flagged object, its primary key, and various labels. See derived classes for examples.

@static

1 method overrides flag_flag::get_views_info()
flag_entity::get_views_info in includes/flag/flag_entity.inc
Returns information for the Views integration.

File

includes/flag/flag_flag.inc, line 1334
Contains the flag_flag class. Flag type classes use an object oriented style inspired by that of Views 2.

Class

flag_flag
This abstract class represents a flag, or, in Views 2 terminology, "a handler".

Code

function get_views_info() {
  return array();
}