You are here

function html_drupalforfirebug_show_array in Drupal For Firebug 7.2

Same name and namespace in other branches
  1. 6 drupalforfirebug.module \html_drupalforfirebug_show_array()
  2. 7 drupalforfirebug.module \html_drupalforfirebug_show_array()

File

./drupalforfirebug.module, line 605

Code

function html_drupalforfirebug_show_array($array) {
  $output = "<table cellspacing=\"0\" border=\"2\">\n";
  $output .= drupalforfirebug_show_array($array, 1, 0);
  $output .= "</table>\n";
  return $output;
}