You are here

function do_offset in Drupal For Firebug 7.2

Same name and namespace in other branches
  1. 5 drupalforfirebug.module \do_offset()
  2. 6 drupalforfirebug.module \do_offset()
  3. 7 drupalforfirebug.module \do_offset()
1 call to do_offset()
drupalforfirebug_show_array in ./drupalforfirebug.module

File

./drupalforfirebug.module, line 569

Code

function do_offset($level) {
  $offset = "";

  // offset for subarry
  for ($i = 1; $i < $level; $i++) {
    $offset = $offset . "<td></td>";
  }
  return $offset;
}