theme_lt_username_description

  1. drupal
    1. 6 logintoboggan.module function
    2. 7 logintoboggan.module function
Drupal 7 theme_lt_username_description($variables)

Theme the username description of the user login form and the user login block.

1 theme call to theme_lt_username_description()

File

sites/all/modules/logintoboggan/logintoboggan.module, line 1182
LoginToboggan module

Code

function theme_lt_username_description($variables) {
  switch ($variables['form_id']) {
    case 'user_login':
      // The username field's description when shown on the /user/login page.
      return t('You may login with either your assigned username or your e-mail address.');
      break;
    case 'user_login_block':
      return '';
      break;
  }
}