function theme_signature_forum in Signatures for Forums 5
Same name and namespace in other branches
- 5.2 signature_forum.module \theme_signature_forum()
Format user signature.
2 theme calls to theme_signature_forum()
- signature_forum_comment in ./
signature_forum.module - Implementation of hook_comment().
- signature_forum_nodeapi in ./
signature_forum.module - Implementation of hook_nodeapi().
File
- ./
signature_forum.module, line 358
Code
function theme_signature_forum($signature) {
// Special case: signature is blank
if ($signature == '') {
return '';
}
return '<div class="signature">' . $signature . '</div>';
}