| 1 |
<?php |
<?php |
| 2 |
// $Id: technorati.module,v 1.11.2.1 2008/07/27 23:54:22 kbahey Exp $ |
// $Id: technorati.module,v 1.11.2.2 2008/09/24 15:35:53 kbahey Exp $ |
| 3 |
|
|
| 4 |
/* |
/* |
| 5 |
* @file |
* @file |
| 269 |
return ''; |
return ''; |
| 270 |
} |
} |
| 271 |
$path = base_path() . drupal_get_path('module', 'technorati') .'/technobubble.gif'; |
$path = base_path() . drupal_get_path('module', 'technorati') .'/technobubble.gif'; |
| 272 |
$output = '<div class="technorati_tags">'; |
|
| 273 |
$output .= '<img src="'. $path .'"/>'; |
$output = '<div class="technorati_tags">'; |
| 274 |
|
$output .= '<img alt="' . t('Technorati Tags:') . '" src="' . $path . '"/>'; |
| 275 |
$output .= '<strong>'. t('Technorati Tags: ') .'</strong>'; |
$output .= '<strong>'. t('Technorati Tags: ') .'</strong>'; |
| 276 |
$output .= implode(' ', $tags); |
$output .= implode(' ', $tags); |
| 277 |
$output .= '</div>'; |
$output .= '</div>'; |