function flag_node::get_flagging_record in Flag 6.2
Same name and namespace in other branches
- 7.3 includes/flag/flag_node.inc \flag_node::get_flagging_record()
- 7.2 flag.inc \flag_node::get_flagging_record()
File
- ./
flag.inc, line 1382 - 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);
}