You are here

function theme_fb_form_req_choice in Drupal for Facebook 7.3

Same name and namespace in other branches
  1. 6.3 fb_form.module \theme_fb_form_req_choice()
  2. 6.2 fb_form.module \theme_fb_form_req_choice()

File

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

Code

function theme_fb_form_req_choice($elements) {

  // This special tag has no children
  $output = "<fb:req-choice " . drupal_attributes($elements['#attributes']) . " />\n";
  return $output;
}