| 
									
										
										
										
											2003-05-07 20:07:25 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | $Id$ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam) | 
					
						
							|  |  |  |   Copyright (C) 2003  Michael Duergner | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |   it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |   the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |   (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |   GNU General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |   along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-12 17:36:24 +00:00
										 |  |  |   LDAP Account Manager display help pages. | 
					
						
							| 
									
										
										
										
											2003-05-07 20:07:25 +00:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2003-06-07 15:00:06 +00:00
										 |  |  | include_once("../lib/ldap.inc"); | 
					
						
							| 
									
										
										
										
											2003-05-07 20:07:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-08 20:16:32 +00:00
										 |  |  | session_save_path("../sess"); // Set session save path
 | 
					
						
							|  |  |  | @session_start(); // Start LDAP Account Manager session
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-12 17:36:24 +00:00
										 |  |  | include_once("../lib/status.inc"); // Include lib/status.php which provides statusMessage()
 | 
					
						
							|  |  |  | include_once("../help/help.inc"); // Include help/help.inc which provides $helpArray where the help pages are stored
 | 
					
						
							| 
									
										
										
										
											2003-05-08 20:16:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Print HTML head */ | 
					
						
							|  |  |  | function echoHTMLHead() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | ?>
 | 
					
						
							|  |  |  | <html> | 
					
						
							|  |  |  | 	<head> | 
					
						
							|  |  |  | 		<title>LDAP Account Manager Help Center</title> | 
					
						
							|  |  |  | 		<link rel="stylesheet" type="text/css" href="../style/layout.css"> | 
					
						
							|  |  |  | 	</head> | 
					
						
							|  |  |  | 	<body> | 
					
						
							|  |  |  | <? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Print HTML foot */ | 
					
						
							|  |  |  | function echoHTMLFoot() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | ?>
 | 
					
						
							|  |  |  | 	</body> | 
					
						
							|  |  |  | </html> | 
					
						
							|  |  |  | <? | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Print help site */ | 
					
						
							|  |  |  | function displayHelp($helpNumber) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-05-12 17:36:24 +00:00
										 |  |  | 	global $helpArray; | 
					
						
							| 
									
										
										
										
											2003-05-08 20:16:32 +00:00
										 |  |  | 	/* If no help number was submitted print error message */ | 
					
						
							|  |  |  | 	if($helpNumber == "") | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		$errorMessage = _("Sorry no help number submitted."); | 
					
						
							|  |  |  | 		echoHTMLHead(); | 
					
						
							|  |  |  | 		statusMessage("ERROR","",$errorMessage); | 
					
						
							|  |  |  | 		echoHTMLFoot(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-05-12 17:36:24 +00:00
										 |  |  | 	/* If submitted help number is not in help/help.inc print error message */ | 
					
						
							|  |  |  | 	elseif(!array_key_exists($helpNumber,$helpArray)) | 
					
						
							| 
									
										
										
										
											2003-05-08 20:16:32 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		$errorMessage = _("Sorry this help number ({bold}" . $helpNumber . "{endbold}) is not available."); | 
					
						
							|  |  |  | 		echoHTMLHead(); | 
					
						
							|  |  |  | 		statusMessage("ERROR","",$errorMessage); | 
					
						
							|  |  |  | 		echoHTMLFoot(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-05-12 17:36:24 +00:00
										 |  |  | 	/* Print help site out of $helpArray */ | 
					
						
							|  |  |  | 	elseif($helpArray[$helpNumber]["ext"] == "FALSE") | 
					
						
							| 
									
										
										
										
											2003-05-08 20:16:32 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		echoHTMLHead(); | 
					
						
							|  |  |  | 		echo "		<h1 class=\"help\">" . $helpArray[$helpNumber]['Headline'] . "</h1>\n"; | 
					
						
							|  |  |  | 		echo "		<p class=\"help\">" . $helpArray[$helpNumber]['Text'] . "</p>\n"; | 
					
						
							| 
									
										
										
										
											2003-05-12 17:36:24 +00:00
										 |  |  | 		if($helpArray[$helpNumber]["SeeAlso"] <> "") | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			echo "		<p class=\"help\">See also: " . $helpArray[$helpNumber]['SeeAlso'] . "</p>\n"; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		echoHTMLFoot(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Load external help page */ | 
					
						
							|  |  |  | 	elseif($helpArray[$helpNumber]["ext"] == "TRUE") | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		echoHTMLHead(); | 
					
						
							| 
									
										
										
										
											2003-05-29 18:45:08 +00:00
										 |  |  | 		include_once("../help/" . $helpArray[$helpNumber]["Link"]); | 
					
						
							| 
									
										
										
										
											2003-05-08 20:16:32 +00:00
										 |  |  | 		echoHTMLFoot(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-05-12 17:36:24 +00:00
										 |  |  | 	/* Print empty page in all other cases */ | 
					
						
							| 
									
										
										
										
											2003-05-08 20:16:32 +00:00
										 |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		echoHTMLHead(); | 
					
						
							|  |  |  | 		echoHTMLFoot(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | displayHelp($_GET['HelpNumber']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |