You are here

function fb_verbose in Drupal for Facebook 7.3

Same name and namespace in other branches
  1. 5.2 fb.module \fb_verbose()
  2. 5 fb.module \fb_verbose()
  3. 6.3 fb.module \fb_verbose()
  4. 6.2 fb.module \fb_verbose()
  5. 7.4 fb.module \fb_verbose()

For debugging, add $conf['fb_verbose'] = TRUE; to settings.php.

18 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
Implements hook_fb().

... See full list

1 string reference to 'fb_verbose'
fb.module in ./fb.module
This is the core required module of Drupal for Facebook.

File

./fb.module, line 1817
This is the core required module of Drupal for Facebook.

Code

function fb_verbose() {
  return variable_get(FB_VAR_VERBOSE, NULL);
}