icingaweb2/modules/monitoring/application/views/scripts/show/components/customvars.phtml

18 lines
401 B
PHTML
Raw Normal View History

2015-06-16 01:15:32 +02:00
<?php if (empty($object->customvars)) return; ?>
<tr class="newsection">
<td colspan="2">
<h2 class="customvar"><?= $this->translate('Custom variables') ?></h2>
</td>
</tr>
<?php
2014-11-06 16:11:29 +01:00
foreach ($object->customvars as $name => $value) {
2014-11-06 16:11:29 +01:00
printf(
2014-11-06 16:11:29 +01:00
'<tr><th>%s</th><td class="customvar">%s</td></tr>' . "\n",
$this->escape($name),
2014-11-06 16:11:29 +01:00
$this->customvar($value)
);
}
2014-11-06 16:11:29 +01:00