icingaweb2/modules/monitoring/application/views/scripts/show/components/customvars.phtml
Eric Lippmann a42668edb8 Fix tests
refs #4663
2013-10-09 09:20:17 +02:00

23 lines
646 B
PHTML

<div class="panel panel-default">
<div class="panel-heading">
<span>Customvariables</span>
</div>
<div class="panel-body">
<?php if (isset($object->customvars) && count($object->customvars)) { ?>
<table>
<tr>
<th>Name</th>
<th>Value</th>
</tr>
<?php foreach ($object->customvars as $name => $value) { ?>
<tr>
<td><?= $this->escape($name) ?></td>
<td><?= $this->escape($value) ?></td>
</tr>
<?php } ?>
</table>
<?php } ?>
</div>
</div>