git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4011 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			37 lines
		
	
	
		
			837 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			837 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* 
 | |
|  * To change this template, choose Tools | Templates
 | |
|  * and open the template in the editor.
 | |
|  */
 | |
| 
 | |
| if(!isset($TOPDIR)) { $TOPDIR="/opt/xcat/ui";}
 | |
| 
 | |
| 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>";
 | |
| 
 | |
| ?>
 |