function drupalforfirebug_log in Drupal For Firebug 7
Same name and namespace in other branches
- 5 drupalforfirebug.module \drupalforfirebug_log()
- 6 drupalforfirebug.module \drupalforfirebug_log()
- 7.2 drupalforfirebug.module \drupalforfirebug_log()
API Function to Record a Message to the Drupal Firebug Log
6 calls to drupalforfirebug_log()
- drupalforfirebug_form_alter in ./
drupalforfirebug.module - Implementation of hook_form_alter()
- drupalforfirebug_node_process in ./
drupalforfirebug.module - Processing function for Node API
- drupalforfirebug_page_alter in ./
drupalforfirebug.module - Implementation of hook_page_alter()
- drupalforfirebug_user_processing in ./
drupalforfirebug.module - Processor for Hook Usering
- drupalforfirebug_views_pre_view in ./
drupalforfirebug.module - Implementation of hook_views_pre_view();
File
- ./
drupalforfirebug.module, line 205
Code
function drupalforfirebug_log($message, $type = 'general') {
global $dfp_runtime;
$dfp_runtime['firebug_messages'][$type][] = $message;
}