| Versionen | |
|---|---|
| drupal6 – drupal7 | template_preprocess_comment_folded(&$variables) |
Process variables for comment-folded.tpl.php.
modules/
<?php
function template_preprocess_comment_folded(&$variables) {
$comment = $variables['comment'];
$variables['author'] = theme('username', $comment);
$variables['date'] = format_date($comment->timestamp);
$variables['new'] = $comment->new ? t('new') : '';
$variables['title'] = l($comment->subject, comment_node_url() . '/' . $comment->cid, array('fragment' => "comment-$comment->cid"));
}
?>
Kommentare
Kommentar hinzufügen