mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-06 16:36:59 +01:00
* [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.
22 lines
720 B
PHP
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; ?>
|