function drupalforfirebug_array_compare in Drupal For Firebug 7
Same name and namespace in other branches
- 5 drupalforfirebug.module \drupalforfirebug_array_compare()
- 6 drupalforfirebug.module \drupalforfirebug_array_compare()
- 7.2 drupalforfirebug.module \drupalforfirebug_array_compare()
Generalized Array Comparision Function
4 calls to drupalforfirebug_array_compare()
- drupalforfirebug_form_alter in ./
drupalforfirebug.module - Implementation of hook_form_alter()
- drupalforfirebug_node_process in ./
drupalforfirebug.module - Processing function for Node API
- 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 397
Code
function drupalforfirebug_array_compare($a, $b) {
$data = drupalforfirebug_array_compare_code($a, $b);
$style = drupalforfirebug_array_highlight_code($data);
return $style;
}