PHP Classes

File: system/dependencies/tracy/tracy/src/Tracy/Bar/panels/errors.panel.phtml

Recommend this page to a friend!
  Classes of Dimitri Sitchet   dFramework   system/dependencies/tracy/tracy/src/Tracy/Bar/panels/errors.panel.phtml   Download  
File: system/dependencies/tracy/tracy/src/Tracy/Bar/panels/errors.panel.phtml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: dFramework
Framework to build PHP applications
Author: By
Last change:
Date: 4 years ago
Size: 618 bytes
 

Contents

Class file image Download
<?php /** * Debug Bar: panel "error" template. * * This file is part of the Tracy (https://tracy.nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Tracy; ?> <h1>Errors</h1> <div class="tracy-inner"> <table class="tracy-sortable"> <?php foreach ($data as $item => $count): list($file, $line, $message) = explode('|', $item, 3) ?> <tr> <td class="tracy-right"><?= $count ? "$count\xC3\x97" : '' ?></td> <td><pre><?= Helpers::escapeHtml($message), ' in ', Helpers::editorLink($file, (int) $line) ?></pre></td> </tr> <?php endforeach ?> </table> </div>