Files
piratepoet/lib/Tracy/DoctrinePanel/doctrine-panel.phtml
Jan Jakeš 71d623f915 Fix errors in Tracy panels
[MAILPOET-1796]
2020-01-14 15:22:42 +01:00

30 lines
802 B
PHTML

<?php
namespace MailPoet\Tracy\DoctrinePanel;
/**
* Inspired by: https://componette.com/macfja/tracy-doctrine-sql/
* @var array $data
* @var DoctrinePanel $this
*/
?>
<h1>Doctrine SQL Queries</h1>
<div class="tracy-inner tracy-doctrine">
<table>
<tr>
<th>SQL</th>
<th>Params</th>
<th>Types</th>
<th>Time&nbsp;(ms)</th>
</tr>
<?php foreach ($this->sqlLogger->queries as $item): ?>
<tr>
<td><?php echo $this->formatSql($item['sql']) ?></td>
<td><pre><?php echo $this->formatArrayData($item['params']) ?></pre></td>
<td><pre><?php echo $this->transformNumericType($this->formatArrayData($item['types'])) ?></pre></td>
<td><?php echo $this->formatTime($item['executionMS']) ?></td>
</tr>
<?php endforeach ?>
</table>
</div>