You are here

function flag_node::get_flagging_record in Flag 7.2

Same name and namespace in other branches
  1. 6.2 flag.inc \flag_node::get_flagging_record()
  2. 7.3 includes/flag/flag_node.inc \flag_node::get_flagging_record()

File

./flag.inc, line 1619
Implements various flags. Uses object oriented style inspired by that of Views 2.

Class

flag_node
Implements a node flag.

Code

function get_flagging_record($content_id, $uid = NULL, $sid = NULL) {
  $content_id = $this
    ->get_translation_id($content_id);
  return parent::get_flagging_record($content_id, $uid, $sid);
}