function fbconnect_prompt_page in Facebook Connect 6
Same name and namespace in other branches
- 5 fbconnect.module \fbconnect_prompt_page()
- 6.2 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 - Implementation of hook_menu().
File
- ./
fbconnect.pages.inc, line 7
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);
}