File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1616 * @link http://cakephp.org CakePHP(tm) Project
1717 * @license http://www.opensource.org/licenses/mit-license.php MIT License
1818 */
19+ App::uses ('Debugger ' , 'Utility ' );
1920?>
2021<h2><?php echo __d ('debug_kit ' , 'App Constants ' ); ?> </h2>
2122<?php
2425 foreach ($ content ['app ' ] as $ key => $ val ) {
2526 $ cakeRows [] = array (
2627 $ key ,
27- $ val
28+ Debugger:: exportVar ( $ val)
2829 );
2930 }
3031 $ headers = array ('Constant ' , 'Value ' );
4041 foreach ($ content ['cake ' ] as $ key => $ val ) {
4142 $ cakeRows [] = array (
4243 h ($ key ),
43- h ($ val )
44+ Debugger:: exportVar ($ val )
4445 );
4546 }
4647 $ headers = array ('Constant ' , 'Value ' );
5859 foreach ($ content ['php ' ] as $ key => $ val ) {
5960 $ phpRows [] = array (
6061 h (Inflector::humanize (strtolower ($ key ))),
61- h ($ val )
62+ Debugger:: exportVar ($ val )
6263 );
6364 }
6465 echo $ this ->Toolbar ->table ($ phpRows , $ headers , array ('title ' => 'CakePHP Environment Vars ' ));
You can’t perform that action at this time.
0 commit comments