You are here

function flag_node::get_flag_action in Flag 6.2

Same name and namespace in other branches
  1. 5 flag.inc \flag_node::get_flag_action()
  2. 6 flag.inc \flag_node::get_flag_action()

File

./flag.inc, line 1408
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;
}