You are here

function fbconnect_autoconnect_form in Facebook Connect 6

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

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

2 string references to 'fbconnect_autoconnect_form'
fbconnect_footer in ./fbconnect.module
Implementation of hook_footer().
fbconnect_init in ./fbconnect.module
Implementation of hook_init().

File

./fbconnect.module, line 635

Code

function fbconnect_autoconnect_form() {
  $form['connect'] = array(
    '#type' => 'submit',
    '#value' => 'Connect',
  );
  return $form;
}