function theme_timeago_posted in Timeago 5
Same name and namespace in other branches
- 6 timeago.module \theme_timeago_posted()
- 7 timeago.module \theme_timeago_posted()
2 theme calls to theme_timeago_posted()
- timeago_comment in ./
timeago.module - hook_comment implementation
- timeago_nodeapi in ./
timeago.module - hook_nodeapi implementation
File
- ./
timeago.module, line 95
Code
function theme_timeago_posted($postdate, $timeago) {
$theme_content = '';
$theme_content .= t('Posted !a', array(
'!a' => '<span class="timeago" title="' . $postdate . '">' . $timeago . '</span>',
));
return $theme_content;
}