19 lines
390 B
PHTML
19 lines
390 B
PHTML
<?php
|
|
$object = null;
|
|
|
|
if (isset($this->service)) {
|
|
$object = $this->service;
|
|
} elseif (isset($this->host)) {
|
|
$object = $this->host;
|
|
}
|
|
|
|
$properties = $this->monitoringProperties($object);
|
|
?>
|
|
<table class="table table-bordered">
|
|
<?php foreach ($properties as $label => $value): ?>
|
|
<tr>
|
|
<th><?= $label ?></th>
|
|
<td><?= $value ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|