mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
29 lines
782 B
PHP
29 lines
782 B
PHP
<?
|
|
if (!check_perms('site_debug')) {
|
|
error(403);
|
|
}
|
|
|
|
if (!isset($_GET['case']) || !$Analysis = $Cache->get_value('analysis_'.$_GET['case'])) {
|
|
error(404);
|
|
}
|
|
|
|
View::show_header('Case Analysis');
|
|
?>
|
|
<div class="header">
|
|
<h2>Case Analysis (<a href="<?=display_str($Analysis['url'])?>"><?=$_GET['case']?></a>)</h2>
|
|
</div>
|
|
<pre id="#debug_report"><?=display_str($Analysis['message'])?></pre>
|
|
<?
|
|
$Debug->perf_table($Analysis['perf']);
|
|
$Debug->flag_table($Analysis['flags']);
|
|
$Debug->include_table($Analysis['includes']);
|
|
$Debug->error_table($Analysis['errors']);
|
|
$Debug->query_table($Analysis['queries']);
|
|
$Debug->cache_table($Analysis['cache']);
|
|
$Debug->class_table();
|
|
$Debug->extension_table();
|
|
$Debug->constant_table();
|
|
$Debug->vars_table($Analysis['vars']);
|
|
View::show_footer();
|
|
?>
|