function drupalforfirebug_log in Drupal For Firebug 6
Same name and namespace in other branches
- 5 drupalforfirebug.module \drupalforfirebug_log()
- 7.2 drupalforfirebug.module \drupalforfirebug_log()
- 7 drupalforfirebug.module \drupalforfirebug_log()
API Function to Record a Message to the Drupal Firebug Log
5 calls to drupalforfirebug_log()
- drupalforfirebug_form_alter in ./
drupalforfirebug.module - Implementation of hook_form_alter()
- drupalforfirebug_nodeapi in ./
drupalforfirebug.module - Implementation of hook_nodeapi()
- drupalforfirebug_user in ./
drupalforfirebug.module - Implementation of hook_user()
- drupalforfirebug_views_pre_view in ./
drupalforfirebug.module - Implementation of hook_views_pre_view();
- firep in ./
drupalforfirebug.module - Command Function to Record a Data Element to the Drupal Firebug Log
File
- ./
drupalforfirebug.module, line 117
Code
function drupalforfirebug_log($message, $type = 'general') {
global $dfp_runtime;
$dfp_runtime['firebug_messages'][$type][] = $message;
}