phptemplate_node_submitted

Definition

phptemplate_node_submitted($node)
themes/garland/template.php, line 81

Code

<?php
function phptemplate_node_submitted($node) {
  return t('!datetime — !username',
    array(
      '!username' => theme('username', $node),
      '!datetime' => format_date($node->created),
    ));
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.