function phptemplate_node_submitted

Returns the themed submitted-by string for the node.

Archivo

drupal-6.x/themes/garland/template.php, line 84

Código

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