| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * 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 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- use Cake\Error\Debugger;
- ?>
- <a href="#" class="toggle-link toggle-vendor-frames">toggle vendor stack frames</a>
- <ul class="stack-trace">
- <?php foreach ($error->getTrace() as $i => $stack): ?>
- <?php $class = (isset($stack['file']) && strpos($stack['file'], APP) === false) ? 'vendor-frame' : 'app-frame'; ?>
- <li class="stack-frame <?= $class ?>">
- <?php if (isset($stack['function'])): ?>
- <a href="#" data-target="stack-frame-<?= $i ?>">
- <?php if (isset($stack['class'])): ?>
- <span class="stack-function">⟩ <?= h($stack['class'] . $stack['type'] . $stack['function']) ?></span>
- <?php else: ?>
- <span class="stack-function">⟩ <?= h($stack['function']) ?></span>
- <?php endif; ?>
- <span class="stack-file">
- <?php if (isset($stack['file'], $stack['line'])): ?>
- <?= h(Debugger::trimPath($stack['file'])) ?>, line <?= $stack['line'] ?>
- <?php else: ?>
- [internal function]
- <?php endif ?>
- </span>
- </a>
- <?php else: ?>
- <a href="#">⟩ [internal function]</a>
- <?php endif; ?>
- </li>
- <?php endforeach; ?>
- </ul>
|