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>
|