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-7.x/
modules/ user/ user.module - Implements hook_menu().
Archivo
- drupal-7.x/
modules/ user/ user.module, line 2008 - Enables the user registration and login system.
Código
function user_menu_title() {
return user_is_logged_in() ? t('My account') : t('User account');
}