You are here

function drupalforfirebug_log in Drupal For Firebug 5

Same name and namespace in other branches
  1. 6 drupalforfirebug.module \drupalforfirebug_log()
  2. 7.2 drupalforfirebug.module \drupalforfirebug_log()
  3. 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 77

Code

function drupalforfirebug_log($message, $type = 'general') {
  global $dfp_runtime;
  $dfp_runtime['firebug_messages'][$type][] = $message;
}