/home/edulekha/www/wp-content/plugins/all-in-one-favicon/includes/debugger.php
<?php
/**
 * @package Techotronic
 * @subpackage All in one Favicon
 *
 * @since 4.0
 * @author Arne Franken
 *
 * Helper class for debugging variables in PHP.
 * see http://www.php.net/manual/en/function.var-dump.php
 *
 * In class:
 * var $debugger;
 *
 * In constructor:
 * global $debugger;
 * require_once('debugger.php');
 * $debugger = new AioFaviconDebugger();
 *
 * In method:
 * global $debugger;
 * $debugger->dieWithVariable($variable);
 */
class AioFaviconDebugger {

  /**
   * Calls wp_die with the given variable.
   *
   * @author Arne Franken
   * @access public
   *
   * @return void
   */
  //public function dieWithAllVariables() {
  function dieWithAllVariables() {
    wp_die(var_dump(get_defined_vars()));
  }

  // dieWithAllVariables()

  /**
   * Calls wp_die with the given variable.
   *
   * @author Arne Franken
   * @access public
   *
   * @param $variable the variable 
   * @param $title 
   *
   * @return void
   */
  //public function dieWithVariable($variable, $title = null) {
  function dieWithVariable($variable, $title = null) {
    wp_die($this->dumpVariable($variable), $title);
  }

  // dieWithVariable()

  //=====================================================================================================

  /**
   * Dumps the given variable into an HTML container
   *
   * @access private
   *
   * @param $var the variable
   * @param String $info display as a title
   *
   * @return void
   */
  //private function dumpVariable(&$var, $info = FALSE) {
  function dumpVariable(&$var, $info = FALSE) {
    $scope = false;
    $prefix = 'unique';
    $suffix = 'value';

    if ($scope) $vals = $scope;
    else $vals = $GLOBALS;

    $old = $var;
    $var = $new = $prefix . rand() . $suffix;
    $vname = FALSE;
    foreach ($vals as $key => $val) if ($val === $new) $vname = $key;
    $var = $old;

    echo "<pre style='margin: 0 0 10px 0; display: block; background: white; color: black; font-family: Verdana; border: 1px solid #cccccc; padding: 5px; font-size: 10px; line-height: 13px;'>";
    if ($info != FALSE) echo "<b style='color: red;'>$info:</b><br>";
    $this->doDumpVariable($var, '$' . $vname);
    echo "</pre>";
  }

  // dumpVariable()

  /**
   * Dumps and formats variables
   *
   * @access private
   *
   * @param  $var
   * @param null $var_name
   * @param null $indent
   * @param null $reference
   *
   * @return void
   */
  //private function doDumpVariable(&$var, $var_name = NULL, $indent = NULL, $reference = NULL) {
  function doDumpVariable(&$var, $var_name = NULL, $indent = NULL, $reference = NULL) {
    $do_dump_indent = "<span style='color:#eeeeee;'>|</span> &nbsp;&nbsp; ";
    $reference = $reference . $var_name;
    $keyvar = 'the_do_dump_recursion_protection_scheme';
    $keyname = 'referenced_object_name';

    if (is_array($var) && isset($var[$keyvar])) {
      $real_var = &$var[$keyvar];
      $real_name = &$var[$keyname];
      $type = ucfirst(gettype($real_var));
      echo "$indent$var_name <span style='color:#a2a2a2'>$type</span> = <span style='color:#e87800;'>&amp;$real_name</span><br>";
    }
    else {
      $var = array($keyvar => $var, $keyname => $reference);
      $avar = &$var[$keyvar];

      $type = ucfirst(gettype($avar));
      if ($type == "String") $type_color = "<span style='color:green'>";
      elseif ($type == "Integer") $type_color = "<span style='color:red'>";
      elseif ($type == "Double") {
        $type_color = "<span style='color:#0099c5'>";
        $type = "Float";
      }
      elseif ($type == "Boolean") $type_color = "<span style='color:#92008d'>";
      elseif ($type == "NULL") $type_color = "<span style='color:black'>";

      if (is_array($avar)) {
        $count = count($avar);
        echo "$indent" . ($var_name ? "$var_name => " : "") . "<span style='color:#a2a2a2'>$type ($count)</span><br>$indent(<br>";
        $keys = array_keys($avar);
        foreach ($keys as $name) {
          $value = &$avar[$name];
          $this->doDumpVariable($value, "['$name']", $indent . $do_dump_indent, $reference);
        }
        echo "$indent)<br>";
      }
      elseif (is_object($avar)) {
        echo "$indent$var_name <span style='color:#a2a2a2'>$type</span><br>$indent(<br>";
        foreach ($avar as $name => $value) $this->doDumpVariable($value, "$name", $indent . $do_dump_indent, $reference);
        echo "$indent)<br>";
      }
      elseif (is_int($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $type_color$avar</span><br>";
      elseif (is_string($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $type_color\"$avar\"</span><br>";
      elseif (is_float($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $type_color$avar</span><br>";
      elseif (is_bool($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $type_color" . ($avar == 1
              ? "TRUE" : "FALSE") . "</span><br>";
      elseif (is_null($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> {$type_color}NULL</span><br>";
      else echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $avar<br>";

      $var = $var[$keyvar];
    }
  }

  // doDumpVariable()

}

// Debugger()
?>