PHP Classes

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

Recommend this page to a friend!
  Classes of Dimitri Sitchet   dFramework   system/dependencies/tracy/tracy/src/Tracy/Bar/panels/dumps.panel.phtml   Download  
File: system/dependencies/tracy/tracy/src/Tracy/Bar/panels/dumps.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: 643 bytes
 

Contents

Class file image Download
<?php /** * Debug Bar: panel "dumps" 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; ?> <style class="tracy-debug"> #tracy-debug .tracy-DumpPanel h2 { font: 11pt/1.5 sans-serif; margin: 0; padding: 2px 8px; background: #3484d2; color: white; } </style> <h1>Dumps</h1> <div class="tracy-inner tracy-DumpPanel"> <?php foreach ($data as $item): ?> <?php if ($item['title']):?> <h2><?= Helpers::escapeHtml($item['title']) ?></h2> <?php endif ?> <?= $item['dump'] ?> <?php endforeach ?> </div>