mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-11-01 11:48:43 +01:00
14 lines
383 B
PHTML
14 lines
383 B
PHTML
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
{{CHECK_ICON}} <span>Check Command</span>
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
<?php
|
|
$explodedCommand = explode('!', $this->object->check_command, 2);
|
|
array_shift($explodedCommand);
|
|
?>
|
|
<?= $this->commandArguments($this->object->check_command); ?>
|
|
</div>
|
|
</div>
|