mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-04-12 12:36:15 -04:00
- Icons have now the {{XY_ICON}} format
- custom classes are removed
- A few typos are fixed
- Capitalization
refs #4550
refs #4621
refs #4584
19 lines
No EOL
390 B
PHTML
19 lines
No EOL
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>
|