You are here

function theme_fb_form_friend_selector in Drupal for Facebook 5.2

File

./fb_form.module, line 477
This module defines facebook-specific form elements for use with Drupal's form API.

Code

function theme_fb_form_friend_selector($fbu = NULL) {
  drupal_set_message("theme_fb_form_friend_selector");
  if (!$fbu) {
    $fbu = fb_facebook_user();
  }
  $output = "<fb:friend-selector uid=\"{$fbu}\" name=\"fbname\" idname=\"fbu\" />";
  return $output;
}