You are here

function theme_fbconnect_user_profile_tab_connected in Facebook Connect 6.2

Make rendering of facebook user profile tab themable

1 theme call to theme_fbconnect_user_profile_tab_connected()
fbconnect_user_identities in ./fbconnect.pages.inc
Menu callback fbconnect identities

File

./fbconnect.pages.inc, line 308
User pages callbacks for the fbconnect module.

Code

function theme_fbconnect_user_profile_tab_connected($account = NULL, $conf = NULL, $uid = NULL) {
  $site_name = $conf['invite_name'] ? $conf['invite_name'] : '';
  return t("Your current Facebook session is associated to another account on our site.\n You can logout of Facebook and attempt to associate another Facebook account to your !site_name account, or you need to disconnect the current association.", array(
    '!site_name' => $site_name,
  ));
}