mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			762 B
		
	
	
	
		
			PHTML
		
	
	
	
	
	
			
		
		
	
	
			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>
 |