function dfb

Same name in other branches
  1. 4.x devel.module \dfb()
  2. 5.x devel.module \dfb()

Calls the fb() function if it is found.

See also

http://www.firephp.org/

2 calls to dfb()
devel_watchdog in ./devel.module
Implements hook_watchdog().
dfbt in ./devel.module
Calls dfb() to output a backtrace.

File

./devel.module, line 536

Code

function dfb() {
    if (function_exists('fb') && user_access('access devel information') && !headers_sent()) {
        $args = func_get_args();
        call_user_func_array('fb', $args);
    }
}