mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-28 02:20:10 +02:00
Conflicts: application/layouts/scripts/layout.phtml modules/monitoring/application/controllers/ListController.php modules/monitoring/application/controllers/ShowController.php modules/monitoring/application/views/scripts/list/hosts.phtml modules/monitoring/application/views/scripts/show/components/comments.phtml modules/monitoring/application/views/scripts/show/components/contacts.phtml modules/monitoring/application/views/scripts/show/components/customvars.phtml modules/monitoring/application/views/scripts/show/host.phtml modules/monitoring/library/Monitoring/Backend/AbstractBackend.php modules/monitoring/library/Monitoring/Backend/Ido/Query/StatusQuery.php
23 lines
597 B
PHTML
23 lines
597 B
PHTML
<?php if (isset($this->customvars) && count($this->customvars)) { ?>
|
|
<div class="information-container">
|
|
<div class="head">
|
|
<span>Customvariables</span>
|
|
</div>
|
|
|
|
<div>
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
<?php foreach ($this->customvars as $name => $value) { ?>
|
|
<tr>
|
|
<td><?= $this->escape($name) ?></td>
|
|
<td><?= $this->escape($value) ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|