user_menu_title

function user_menu_title

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".

File

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

Code

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

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!user!user.module/function/user_menu_title/7.x

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部