function user_menu_title

Menu item title callback for the 'user' path.

Anonymous users should see "User account", but authenticated users are expected to see "My account".

1 string reference to 'user_menu_title'
user_menu in drupal/modules/user/user.module
Implements hook_menu().

File

drupal/modules/user/user.module, line 2041
Enables the user registration and login system.

Code

function user_menu_title() {
  return user_is_logged_in() ? t('My account') : t('User account');
}