hook_username_alter

Versions
mediamosa-21
hook_username_alter(&$name, $account)

Alter the username that is displayed for a user.

Called by format_username() to allow modules to alter the username that's displayed. Can be used to ensure user privacy in situations where $account->name is too revealing.

See also

format_username()

Parameters

&$name The string that format_username() will return.

$account The account object passed to format_username().

Related topics

Code

modules/system/system.api.php, line 3044

<?php
function hook_username_alter(&$name, $account) {
  // Display the user's uid instead of name.
  if (isset($account->uid)) {
    $name = t('User !uid', array('!uid' => $account->uid));
  }
}
?>