You are here

function fbconnect_footer in Facebook Connect 6

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

Implementation of hook_footer().

File

./fbconnect.module, line 621

Code

function fbconnect_footer() {
  if ($config = fbconnect_get_config()) {
    $footer = '<script type="text/javascript" src="' . $config['featureLoader_url'] . '"></script>';
    if (!fbconnect_get_fbuid(true)) {

      // Display the autoconnect form.
      $footer .= '<div style="display: none">' . drupal_get_form('fbconnect_autoconnect_form') . '</div>';
    }
    return $footer;
  }
}