mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
a59d3b83eb
Credit to @bennothommo
73 lines
3.1 KiB
PHP
73 lines
3.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Exception</title>
|
|
<link href="<?= Url::asset('/modules/system/assets/css/styles.css') ?>" rel="stylesheet">
|
|
<script src="<?= Url::asset('/modules/system/assets/vendor/syntaxhighlighter/scripts/shCore.js') ?>"></script>
|
|
<script src="<?= Url::asset('/modules/system/assets/vendor/syntaxhighlighter/scripts/shBrushPhp.js') ?>"></script>
|
|
<script src="<?= Url::asset('/modules/system/assets/vendor/syntaxhighlighter/scripts/shBrushXml.js') ?>"></script>
|
|
<link href="<?= Url::asset('/modules/system/assets/vendor/syntaxhighlighter/styles/shCore.css') ?>">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
|
|
<h1><i class="icon-power-off warning"></i> Error</h1>
|
|
|
|
<p class="lead">We're sorry, but an unhandled error occurred. Please see the details below.</p>
|
|
|
|
<div class="exception-name-block">
|
|
<div><?= e($exception->getMessage()) ?></div>
|
|
<p><?= $exception->getFile() ?> <span>line</span> <?= $exception->getLine() ?></p>
|
|
</div>
|
|
|
|
<ul class="indicators">
|
|
<li>
|
|
<h3>Type</h3>
|
|
<p><?= e($exception->getErrorType()) ?></p>
|
|
</li>
|
|
<li>
|
|
<h3>Exception</h3>
|
|
<p><?= e($exception->getClassName()) ?></p>
|
|
</li>
|
|
</ul>
|
|
|
|
<pre class="brush: php"><?php foreach ($exception->getHighlightLines() as $line): ?><?= $line ?><?php endforeach ?></pre>
|
|
|
|
<h3><i class="icon-code-fork warning"></i> Stack trace</h3>
|
|
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th class="right">#</th>
|
|
<th>Called Code</th>
|
|
<th>Document</th>
|
|
<th class="right">Line</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($exception->getCallStack() as $stackItem): ?>
|
|
<tr>
|
|
<td class="right"><?= $stackItem->id ?></td>
|
|
<td>
|
|
<?= $stackItem->code ?>(<?php if ($stackItem->args): ?><abbr title="<?= $stackItem->args ?>">…</abbr><?php endif ?>)
|
|
</td>
|
|
<td><?= $stackItem->file ?></td>
|
|
<td class="right"><?= $stackItem->line ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<script>
|
|
SyntaxHighlighter.defaults['toolbar'] = false;
|
|
SyntaxHighlighter.defaults['quick-code'] = false;
|
|
SyntaxHighlighter.defaults['html-script'] = true;
|
|
SyntaxHighlighter.defaults['first-line'] = <?= $exception->getHighlight()->startLine+1 ?>;
|
|
SyntaxHighlighter.defaults['highlight'] = <?= $exception->getLine() ?>;
|
|
SyntaxHighlighter.all()
|
|
</script>
|
|
</body>
|
|
</html>
|