mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-04 13:22:36 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4075 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			37 lines
		
	
	
		
			827 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			827 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/* 
 | 
						|
 * To change this template, choose Tools | Templates
 | 
						|
 * and open the template in the editor.
 | 
						|
 */
 | 
						|
 | 
						|
if(!isset($TOPDIR)) { $TOPDIR="..";}
 | 
						|
 | 
						|
require_once "$TOPDIR/lib/security.php";
 | 
						|
require_once "$TOPDIR/lib/functions.php";
 | 
						|
require_once "$TOPDIR/lib/display.php";
 | 
						|
require_once "$TOPDIR/lib/monitor_display.php";
 | 
						|
 | 
						|
echo <<<TOS1
 | 
						|
<table id="tabTable" class="tabTable" cellspacing="1">
 | 
						|
    <thead>
 | 
						|
        <tr class="colHeaders">
 | 
						|
            <td></td>
 | 
						|
            <td>Plug-in Name</td>
 | 
						|
            <td>Status</td>
 | 
						|
            <td>Node Status Monitoring</td>
 | 
						|
            <td>Action</td>
 | 
						|
        </tr>
 | 
						|
    </thead>
 | 
						|
TOS1;
 | 
						|
echo <<<TOS9
 | 
						|
<script type="text/javascript">
 | 
						|
    showPluginOptions();
 | 
						|
    showPluginDescription();
 | 
						|
</script>
 | 
						|
TOS9;
 | 
						|
    echo '<tbody id="monlist">';
 | 
						|
    displayMonitorLists();
 | 
						|
    echo "</tbody></table>";
 | 
						|
 | 
						|
?>
 |