function flag_node::get_flag_action in Flag 6
Same name and namespace in other branches
- 5 flag.inc \flag_node::get_flag_action()
- 6.2 flag.inc \flag_node::get_flag_action()
File
- ./
flag.inc, line 916 - Implements various flags. Uses object oriented style inspired by that of Views 2.
Class
- flag_node
- Implements a node flag.
Code
function get_flag_action($content_id) {
$flag_action = parent::get_flag_action($content_id);
$node = $this
->fetch_content($content_id);
$flag_action->content_title = $node->title;
$flag_action->content_url = _flag_url('node/' . $node->nid);
return $flag_action;
}