function flag_comment::options in Flag 6.2
Same name and namespace in other branches
- 7.3 includes/flag/flag_comment.inc \flag_comment::options()
- 7.2 flag.inc \flag_comment::options()
File
- ./
flag.inc, line 1468 - Implements various flags. Uses object oriented style inspired by that of Views 2.
Class
- flag_comment
- Implements a comment flag.
Code
function options() {
$options = parent::options();
$options += array(
'access_author' => '',
'show_on_comment' => TRUE,
);
return $options;
}