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

39 lines
846 B
PHTML

<?php
namespace MailPoet\Tracy\DIPanel;
/**
* @var DIPanel $this
*/
?>
<h1>Dependency Injection</h1>
<div class="tracy-inner">
<h2>Free (<?= count($this->freeServices) ?> services)</h2>
<table>
<tr>
<th>Service</th>
<th>Used In</th>
</tr>
<?php foreach ($this->freeServices as $item): ?>
<tr>
<td><?php $this->printItem($item) ?></td>
<td><?php $this->printUsages($item) ?></td>
</tr>
<?php endforeach ?>
</table>
<h2>Premium (<?= count($this->premiumServices) ?> services)</h2>
<table>
<tr>
<th>Service</th>
<th>Used In</th>
</tr>
<?php foreach ($this->premiumServices as $item): ?>
<tr>
<td><?php $this->printItem($item) ?></td>
<td><?php $this->printUsages($item) ?></td>
</tr>
<?php endforeach ?>
</table>
</div>