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

7 lines
220 B
PHTML

<?php foreach ($object->customvars as $name => $value): ?>
<tr>
<th><?= $this->escape(ucwords(str_replace('_', ' ', strtolower($name)))) ?></th>
<td><?= $this->customvar($value) ?></td>
</tr>
<?php endforeach ?>