function fb_verbose in Drupal for Facebook 6.3
Same name and namespace in other branches
- 5.2 fb.module \fb_verbose()
- 5 fb.module \fb_verbose()
- 6.2 fb.module \fb_verbose()
- 7.4 fb.module \fb_verbose()
- 7.3 fb.module \fb_verbose()
For debugging, add $conf['fb_verbose'] = TRUE; to settings.php.
17 calls to fb_verbose()
- fb_admin_set_properties_form_submit in ./
fb.admin.inc - Confirm form submit function. We don't use fb_app_set_app_properties, because fb_app.module may not be enabled.
- fb_ajax_event in ./
fb.module - Ajax callback handles an event from facebook's javascript sdk.
- fb_api_check_session in ./
fb.module - Sometimes calls to fb_api_init succeed, but calls to the client api will fail because cookies are obsolete or what have you. This function makes a call to facebook to test the session. Expensive, so use only when necessary.
- fb_app_set_app_properties in ./
fb_app.admin.inc - Sets callback URLs and other properties of a facebook app. Calls the facebook
- fb_canvas_fb in ./
fb_canvas.module - Implementation of hook_fb().
1 string reference to 'fb_verbose'
File
- ./
fb.module, line 1550 - This is the core required module of Drupal for Facebook.
Code
function fb_verbose() {
return variable_get(FB_VAR_VERBOSE, NULL);
}