From 14d4276edc0c51bdc17e6a42d8b3f546cbd58814 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 8 Nov 2011 19:09:53 -0200 Subject: Mail icon --- template.php | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'template.php') diff --git a/template.php b/template.php index 1353aa9..615b9b8 100644 --- a/template.php +++ b/template.php @@ -223,7 +223,6 @@ function muambeiro_field($variables) { return $output; } - /** * Implements hook_theme(). */ @@ -287,3 +286,30 @@ function muambeiro_ns() { } return $output; } + +/** + * Overrides theme_link(). + */ +function muambeiro_link($variables) { + if ($variables['path'] == 'messages') { + $path = drupal_get_path('theme', 'muambeiro'); + $mail = theme('image', + array( + 'path' => $path .'/images/mail.png', + 'alt' => t('Item unavailable'), + 'title' => t('Item unavailable'), + ) + ); + + $link = ''; + $link .= $mail; + $link .= ($variables['options']['html'] ? $variables['text'] : check_plain($variables['text'])); + $link .= ''; + } + else { + return theme_link($variables); + } + + return $link; +} -- cgit v1.2.3