function user_page_title

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/user/user.module \user_page_title()

Menu item title callback - use the user name.

3 string references to 'user_page_title'
drupal-6.bare.database.php in drupal-7.x/modules/simpletest/tests/upgrade/drupal-6.bare.database.php
Bare installation of Drupal 6.17, for test purposes.
drupal-6.filled.database.php in drupal-7.x/modules/simpletest/tests/upgrade/drupal-6.filled.database.php
Filled installation of Drupal 6.17, for test purposes.
user_menu in drupal-7.x/modules/user/user.module
Implements hook_menu().

Archivo

drupal-7.x/modules/user/user.module, line 2015
Enables the user registration and login system.

Código

function user_page_title($account) {
  return is_object($account) ? format_username($account) : '';
}