function flag_rules_get_comment_author in Flag 6
Same name and namespace in other branches
- 6.2 includes/flag.rules.inc \flag_rules_get_comment_author()
1 string reference to 'flag_rules_get_comment_author'
File
- includes/
flag.rules.inc, line 130 - flag.rules.inc Rules integration for the Flag module.
Code
function flag_rules_get_comment_author($flag, $content_id, $account) {
$comment = $flag
->fetch_content($content_id);
return rules_events_argument_comment_author($comment);
}