theme_user_signature

Versions
6
theme_user_signature($signature)
7
theme_user_signature($variables)

Theme output of user signature.

Related topics

Code

modules/user/user.module, line 2077

<?php
function theme_user_signature($signature) {
  $output = '';
  if ($signature) {
    $output .= '<div class="clear">';
    $output .= '<div>—</div>';
    $output .= $signature;
    $output .= '</div>';
  }

  return $output;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.