| Versionen | |
|---|---|
| drupal6 – drupal7 | comment_invoke_comment(&$comment, $op) |
Invoke a hook_comment() 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.
modules/
<?php
function comment_invoke_comment(&$comment, $op) {
$return = array();
foreach (module_implements('comment') as $name) {
$function = $name . '_comment';
$result = $function($comment, $op);
if (isset($result) && is_array($result)) {
$return = array_merge($return, $result);
}
else if (isset($result)) {
$return[] = $result;
}
}
return $return;
}
?>
Kommentare
Kommentar hinzufügen