function theme_fb_form_req_choice in Drupal for Facebook 6.2
Same name and namespace in other branches
- 6.3 fb_form.module \theme_fb_form_req_choice()
- 7.3 fb_form.module \theme_fb_form_req_choice()
File
- ./
fb_form.module, line 497 - 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;
}