function fb_form_menu in Drupal for Facebook 5.2
Same name and namespace in other branches
- 5 fb_form.module \fb_form_menu()
- 6.3 fb_form.module \fb_form_menu()
- 6.2 fb_form.module \fb_form_menu()
- 7.3 fb_form.module \fb_form_menu()
hook_menu.
File
- ./
fb_form.module, line 18 - This module defines facebook-specific form elements for use with Drupal's form API.
Code
function fb_form_menu($may_cache) {
$items = array();
if ($may_cache) {
// Page allowing a user to invite their friends to add the app.
$items[] = array(
'path' => 'fb/invite',
'callback' => 'fb_form_invite_page',
'access' => TRUE,
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'fb_form_friend_selector_autocomplete',
'callback' => 'fb_form_friend_selector_autocomplete',
'access' => TRUE,
'type' => MENU_CALLBACK,
);
}
return $items;
}