You are here

function fbconnect_autoconnect_form in Facebook Connect 5

Same name and namespace in other branches
  1. 6.2 fbconnect.module \fbconnect_autoconnect_form()
  2. 6 fbconnect.module \fbconnect_autoconnect_form()

This form is submitted by javascript when facebook session is detected.

1 string reference to 'fbconnect_autoconnect_form'
fbconnect_footer in ./fbconnect.module
Implementation of hook_footer().

File

./fbconnect.module, line 613
This module allows site visitors to connect and register with facebook account

Code

function fbconnect_autoconnect_form() {
  $form['fbconnect'] = array(
    '#type' => 'hidden',
  );
  return $form;
}