You are here

function fb_user_page_title in Drupal for Facebook 7.3

Menu callback to set title.

1 string reference to 'fb_user_page_title'
fb_user_menu in ./fb_user.module
Implements hook_menu().

File

./fb_user.module, line 101
This module manages relations between local Drupal user accounts and their accounts on facebook.com.

Code

function fb_user_page_title($fb_user) {
  return $fb_user['name'];
}