Eric Lippmann a42668edb8 Fix tests
refs #4663
2013-10-09 09:20:17 +02:00

28 lines
762 B
PHTML

<div class="panel panel-default">
<div class="panel-heading">
{{CHECK_COMMAND_ICON}}
<span>Check Command</span>
</div>
<div class="panel-body">
<table>
<tr>
<td>Command</td>
<td>
<?php
$explodedCommand = explode('!', $this->object->check_command, 2);
$command = array_shift($explodedCommand);
echo $command;
?>
</td>
</tr>
<tr>
<td>Arguments</td>
<td>
<?= $this->commandArguments($this->object->check_command); ?>
</td>
</tr>
</table>
</div>
</div>