%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/vendor/cakephp/cakephp/src/Template/Element/ |
Upload File : |
<?php
/**
* Prints a stack trace for an exception
*
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 1.3.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
use Cake\Error\Debugger;
?>
<?php
foreach ($error->getTrace() as $i => $stack):
$excerpt = $params = [];
if (isset($stack['file'], $stack['line'])):
$excerpt = Debugger::excerpt($stack['file'], $stack['line'], 4);
endif;
if (isset($stack['file'])):
$file = $stack['file'];
else:
$file = '[internal function]';
endif;
if ($stack['function']):
if (!empty($stack['args'])):
foreach ((array)$stack['args'] as $arg):
$params[] = Debugger::exportVar($arg, 4);
endforeach;
else:
$params[] = 'No arguments';
endif;
endif;
?>
<div id="stack-frame-<?= $i ?>" style="display:none;" class="stack-details">
<span class="stack-frame-file"><?= h($file) ?></span>
<a href="#" class="toggle-link stack-frame-args" data-target="stack-args-<?= $i ?>">toggle arguments</a>
<table class="code-excerpt" cellspacing="0" cellpadding="0">
<?php $lineno = isset($stack['line']) ? $stack['line'] - 4 : 0 ?>
<?php foreach ($excerpt as $l => $line): ?>
<tr>
<td class="excerpt-number" data-number="<?= $lineno + $l ?>"></td>
<td class="excerpt-line"><?= $line ?></td>
</tr>
<?php endforeach; ?>
</table>
<div id="stack-args-<?= $i ?>" style="display: none;">
<pre><?= h(implode("\n", $params)) ?></pre>
</div>
</div>
<?php endforeach; ?>