function flag_node::is_flagged in Flag 6
Same name and namespace in other branches
- 5 flag.inc \flag_node::is_flagged()
File
- ./
flag.inc, line 900 - Implements various flags. Uses object oriented style inspired by that of Views 2.
Class
- flag_node
- Implements a node flag.
Code
function is_flagged($content_id, $uid = NULL) {
$content_id = $this
->get_translation_id($content_id);
return parent::is_flagged($content_id, $uid);
}