mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-10-04 15:19:07 +02:00
12 lines
212 B
PHTML
12 lines
212 B
PHTML
<?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)
|
|
);
|
|
}
|
|
|