From d83289f857853b2efca194cd663267c24dbfd305 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Thu, 6 Dec 2007 09:58:34 +0000 Subject: #196667 (GHOP 45) by fberci: add '@ingroup themeable' to all themeable functions --- modules/node/node.module | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'modules/node/node.module') diff --git a/modules/node/node.module b/modules/node/node.module index c4ea1336e..e2a800bf8 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -148,6 +148,8 @@ function node_title_list($result, $title = NULL) { /** * Format a listing of links to nodes. + * + * @ingroup themeable */ function theme_node_list($items, $title = NULL) { return theme('item_list', $items, $title); @@ -1045,6 +1047,11 @@ function node_show($node, $cid) { return $output; } +/** + * Theme a log message. + * + * @ingroup themeable + */ function theme_node_log_message($log) { return '
'. t('Log') .':
'. $log .'
'; } @@ -1234,6 +1241,11 @@ function node_user($op, &$edit, &$user) { } } +/** + * Theme the content ranking part of the search settings admin page. + * + * @ingroup themeable + */ function theme_node_search_admin($form) { $output = drupal_render($form['info']); @@ -2315,6 +2327,8 @@ function node_forms() { /** * Format the "Submitted by username on date/time" for each node + * + * @ingroup themeable */ function theme_node_submitted($node) { return t('Submitted by !username on @datetime', -- cgit v1.2.3