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

17 lines
352 B
PHTML

<tr class="newsection">
<td colspan="2">
<h4 class="customvar"><?= $this->translate('Custom variables') ?></h4>
</td>
</tr>
<?php
foreach ($object->customvars as $name => $value) {
printf(
'<tr><th>%s</th><td class="customvar">%s</td></tr>' . "\n",
$this->escape($name),
$this->customvar($value)
);
}