function dcp

Same name in other branches
  1. 6.x-1.x devel.module \dcp()
  2. 8.x-1.x devel.module \dcp()

Wrapper for ChromePHP Class log method.

File

./devel.module, line 553

Code

function dcp() {
    if (class_exists('ChromePhp', FALSE) && user_access('access devel information')) {
        $args = func_get_args();
        call_user_func_array(array(
            'ChromePhp',
            'log',
        ), $args);
    }
}