%PDF- %PDF-
Direktori : /www/old2/_music/diplomka/diplomka/src/API/libs/Nette/Diagnostics/templates/ |
Current File : /www/old2/_music/diplomka/diplomka/src/API/libs/Nette/Diagnostics/templates/bar.errors.panel.phtml |
<?php /** * Debug Bar: panel "error" template. * * This file is part of the Nette Framework (http://nette.org) * Copyright (c) 2004 David Grudl (http://davidgrudl.com) */ namespace Nette\Diagnostics; use Nette; ?> <h1>Errors</h1> <div class="nette-inner"> <table> <?php $i = 0 ?> <?php foreach ($data as $item => $count): list($message, $file, $line) = explode('|', $item) ?> <tr class="<?php echo $i++ % 2 ? 'nette-alt' : '' ?>"> <td class="nette-right"><?php echo $count ? "$count\xC3\x97" : '' ?></td> <td><pre><?php echo htmlspecialchars(Nette\Utils\Strings::fixEncoding($message)), ' in ', Helpers::editorLink($file, $line), ':', $line ?></pre></td> </tr> <?php endforeach ?> </table> </div>