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 modules/user/user.module
Implements hook_menu().

File

modules/user/user.module, line 2055

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.