function flag_comment::options in Flag 7.3
Same name and namespace in other branches
- 6.2 flag.inc \flag_comment::options()
- 7.2 flag.inc \flag_comment::options()
Adds additional options that are common for all entity types.
Overrides flag_entity::options
File
- includes/
flag/ flag_comment.inc, line 12 - Contains the flag_comment class.
Class
- flag_comment
- Implements a comment flag.
Code
function options() {
$options = parent::options();
$options += array(
'access_author' => '',
);
return $options;
}