24 use DebugBar\DataCollector\ConfigCollector;
42 $langs->transnoentities(
'Config') => array(
44 "widget" =>
"PhpDebugBar.Widgets.VariableListWidget",
45 "map" => $this->getName(),
60 return parent::collect();
73 $const = get_defined_constants(
true);
77 'const' => $const[
'user'],
82 'version' => PHP_VERSION,
83 'interface' => PHP_SAPI,
102 $_arr = is_object($obj) ? get_object_vars($obj) : $obj;
103 foreach ($_arr as $key => $val) {
104 $val = (is_array($val) || is_object($val)) ? $this->
objectToArray($val) : $val;