| Versionen | |
|---|---|
| drupal7 | hook_comment_view(&$comment) |
The comment is being viewed. This hook can be used to add additional data to the comment before theming.
$comment Passes in the comment the action is being performed on.
Nothing.
modules/
<?php
function hook_comment_view(&$comment) {
// how old is the comment
$comment->time_ago = time() - $comment->timestamp;
}
?>
Kommentare
Kommentar hinzufügen