function fb_invite_element_info in Drupal for Facebook 7.4
Expose the Facebook Invite markup as a drupal_render element. This makes it easy to add facebook invite feature to any page or form.
File
- contrib/
fb_invite.module, line 75 - Adds the ability to invite facebook friends to use the local Facebook Application.
Code
function fb_invite_element_info() {
return array(
'fb_invite' => array(
'#input' => FALSE,
'#process' => array(
'fb_invite_element_process',
),
),
);
}