comment_invoke_comment(&$comment, $op)
drupal/modules/comment/comment.module, line 2001
Invoke a hook_comment_[$op]() operation in all modules.
&$comment A comment object.
$op A string containing the name of the comment operation.
The returned value of the invoked hooks.
function comment_invoke_comment(&$comment, $op) {
$return = array();
foreach (module_implements('comment_' . $op) as $module) {
$function = $module . '_comment_' . $op;
$result = $function($comment);
if (isset($result) && is_array($result)) {
$return = array_merge($return, $result);
}
elseif (isset($result)) {
$return[] = $result;
}
}
return $return;
}