You are here

function flag_comment::default_options in Flag 6

Same name and namespace in other branches
  1. 5 flag.inc \flag_comment::default_options()

File

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

Class

flag_comment
Implements a comment flag.

Code

function default_options() {
  $options = parent::default_options();
  $options += array(
    'show_on_comment' => TRUE,
  );
  return $options;
}