You are here

function drupalforfirebug_get_php_exec_area in Drupal For Firebug 6

Same name and namespace in other branches
  1. 5 drupalforfirebug.module \drupalforfirebug_get_php_exec_area()
  2. 7.2 drupalforfirebug.module \drupalforfirebug_get_php_exec_area()
  3. 7 drupalforfirebug.module \drupalforfirebug_get_php_exec_area()
1 call to drupalforfirebug_get_php_exec_area()
drupalforfirebug_shutdown in ./drupalforfirebug.module
Output Function to Return Hidden Div Containers in Footer

File

./drupalforfirebug.module, line 188

Code

function drupalforfirebug_get_php_exec_area() {

  //$output = '<iframe style="width=100%;frameborder=0;height=100%;margin-bottom:-3px;" src="' . url('admin/firebug/exec', array('absolute' => TRUE)) . '"></iframe>';
  $output = '<object style="width:100%;frameborder:0;height:100%;margin-bottom:-3px;" type="text/html" data="' . url('admin/firebug/exec', array(
    'absolute' => TRUE,
  )) . '"></object>';
  return $output;
}