You are here

function fboauth_user_form in Facebook OAuth (FBOAuth) 7

Same name and namespace in other branches
  1. 6 includes/fboauth.pages.inc \fboauth_user_form()
  2. 7.2 includes/fboauth.pages.inc \fboauth_user_form()

User settings page for Facebook OAuth.

Note that currently this is not a form, it's just a normal page.

1 string reference to 'fboauth_user_form'
fboauth_menu in ./fboauth.module
Implements hook_menu().

File

includes/fboauth.pages.inc, line 180
Administrative pages and functions for Facebook OAuth module.

Code

function fboauth_user_form($account) {
  module_load_include('inc', 'fboauth', 'includes/fboauth.fboauth');
  return theme('fboauth_user_info', array(
    'account' => $account,
  ));
}