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

12 lines
212 B
PHTML
Raw Normal View History

<?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