mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-04 05:12:30 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4605 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			22 lines
		
	
	
		
			754 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			754 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
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";
 | 
						|
 | 
						|
displayMapper(array('home'=>'main.php', 'monitor' =>''));
 | 
						|
 | 
						|
displayTips(array("Click the name of each plugin, you can get the plugin's description.",
 | 
						|
        "Select one plugin, choose the options for set up monitoring ",
 | 
						|
        "Click the button <b>\"Start\", \"Stop\" or \"Restart\"</b> to setup monitoring plugin"));
 | 
						|
 | 
						|
 | 
						|
//TODO: change the view style;
 | 
						|
//Change all the "Actions/Description/Configurations/Views" to Tabs
 | 
						|
//And, list all the monitoring plugins under the tree? Not sure now.
 | 
						|
displayMonTable();
 | 
						|
 | 
						|
insertDiv("options");
 | 
						|
 | 
						|
?>
 |