You are here

function fb_actions_profile_fbml_submit in Drupal for Facebook 5.2

Same name and namespace in other branches
  1. 5 fb_actions.module \fb_actions_profile_fbml_submit()

File

./fb_actions.module, line 92
Actions defined here interact with Facebook's API. This makes it possible to notify facebook of various activities as they happen.

Code

function fb_actions_profile_fbml_submit($form_id, $values) {
  return array(
    'fb_app_nid' => $values['fb_app_nid'],
    'body' => $values['body'],
    'body_filter' => $values['body_filter'],
    'profile_main' => $values['profile_main'],
    'mobile_profile' => $values['mobile_profile'],
  );
}