| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_node_submitted($node) |
Format the "Submitted by username on date/time" for each node
modules/
<?php
function theme_node_submitted($node) {
return t('Submitted by !username on @datetime',
array(
'!username' => theme('username', $node),
'@datetime' => format_date($node->created),
));
}
?>
Kommentare
Kommentar hinzufügen