| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_user_signature($signature) |
Theme output of user signature.
modules/
<?php
function theme_user_signature($signature) {
$output = '';
if ($signature) {
$output .= '<div class="clear">';
$output .= '<div>—</div>';
$output .= $signature;
$output .= '</div>';
}
return $output;
}
?>
Kommentare
Kommentar hinzufügen