Files
sysPass/inc/tpl/debug.inc
nuxsmin 399e579f9c * [ADD] Fully MVC.
* [ADD] Abstract classes and interfaces for better code structure.
* [MOD] Actions handled as integers not strings and are consistent accross app modules.
* [MOD] Classes' names where modified. Namespaces where added for better handling.
* [ADD] Common exception class for the whole app.
* [ADD] New base file for app initialization.
* [MOD] Speed improvements.
2015-06-21 04:45:55 +02:00

22 lines
720 B
PHP

<div ID='debuginfo' class='round'>
<h3>DEBUG INFO</h3>
<ul>
<li>RENDER -> <?php use SP\Config;
use SP\Crypt;
echo $time; ?> sec</li>
<li>MEM -> Init: <?php echo $memInit; ?> KB - End: <?php echo $memEnd; ?> KB -
Total: <?php echo $memEnd - $memInit; ?> KB
</li>
<li>SESSION:
<pre><?php echo print_r($_SESSION, true) ?></pre>
</li>
<li>MASTER PASS: <?php echo Crypt::getSessionMasterPass(); ?></li>
<li>CONFIG FILE:
<pre><?php echo print_r(Config::getKeys(true), true); ?></pre>
</li>
</div>
<?php //foreach ($debugTxt as $out): ?>
<!-- --><?php //echo $out; ?>
<?php //endforeach; ?>