function fbconnect_prompt_page in Facebook Connect 6.2
Same name and namespace in other branches
- 5 fbconnect.module \fbconnect_prompt_page()
- 6 fbconnect.pages.inc \fbconnect_prompt_page()
Menu callback. Called when user perform facebook registration
1 string reference to 'fbconnect_prompt_page'
- fbconnect_menu in ./
fbconnect.module - Implements hook_menu().
File
- ./
fbconnect.pages.inc, line 12 - User pages callbacks for the fbconnect module.
Code
function fbconnect_prompt_page() {
$links = fbconnect_prompt_page_links();
$output = array();
foreach ($links as $link) {
array_push($output, theme('box', $link));
}
return join("\n", $output);
}