From 3409019929da282bca397ccfa64985c5d74394f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Sun, 1 Jul 2007 23:15:41 +0000 Subject: #146386 by kbahey: refactor 'submitted by user - date' themeing and make it more verbose to translate --- modules/comment/comment.module | 18 +++++++++++++++--- modules/node/node.module | 16 +++++++++++++++- 2 files changed, 30 insertions(+), 4 deletions(-) (limited to 'modules') diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 495637b94..f7141b1d0 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -184,6 +184,9 @@ function comment_theme() { 'comment_wrapper' => array( 'arguments' => array('content' => NULL), ), + 'comment_submitted' => array( + 'arguments' => array('comment' => NULL), + ), ); } @@ -1853,9 +1856,7 @@ function template_preprocess_comment(&$variables) { $variables['new'] = $comment->new ? t('new') : ''; $variables['picture'] = theme_get_setting('toggle_comment_user_picture') ? theme('user_picture', $comment) : ''; $variables['signature'] = $comment->signature; - $variables['submitted'] = t('Submitted by !a on @b.', - array('!a' => theme('username', $comment), - '@b' => format_date($comment->timestamp))); + $variables['submitted'] = theme('comment_submitted', $comment); $variables['title'] = l($comment->subject, $_GET['q'], array('fragment' => "comment-$comment->cid")); $variables['template_files'][] = 'comment-'. $node->type; } @@ -1917,6 +1918,17 @@ function theme_comment_wrapper($content) { return '
'. $content .'
'; } +/** + * Make the submitted variable themable + */ +function theme_comment_submitted($comment) { + return t('Submitted by !username on @datetime.', + array( + '!username' => theme('username', $comment), + '@datetime' => format_date($comment->timestamp) + )); +} + function _comment_delete_thread($comment) { if (!is_object($comment) || !is_numeric($comment->cid)) { watchdog('content', 'Can not delete non-existent comment.', WATCHDOG_WARNING); diff --git a/modules/node/node.module b/modules/node/node.module index c1eadf292..d8949dd65 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -84,6 +84,9 @@ function node_theme() { 'node_log_message' => array( 'arguments' => array('log' => NULL), ), + 'node_submitted' => array( + 'arguments' => array('node' => NULL), + ), ); } @@ -3204,6 +3207,17 @@ function node_forms() { return $forms; } +/** + * Format the "Submitted by username on date/time" for each node + */ +function theme_node_submitted($node) { + return t('Submitted by !username on @datetime', + array( + '!username' => theme('username', $node), + '@datetime' => format_date($node->created), + )); +} + /** * Implementation of hook_hook_info(). */ @@ -3477,4 +3491,4 @@ function node_unpublish_by_keyword_action($node, $context) { break; } } -} \ No newline at end of file +} -- cgit v1.2.3