2003-05-07 20:07:25 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
This code is part of LDAP Account Manager (http://www.sourceforge.net/projects/lam)
|
2006-03-03 17:30:35 +00:00
|
|
|
Copyright (C) 2003 - 2006 Michael Duergner
|
2008-02-03 18:37:05 +00:00
|
|
|
2008 Roland Gruber
|
2003-05-07 20:07:25 +00:00
|
|
|
|
|
|
|
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
|
|
|
*/
|
2004-10-30 16:46:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* LDAP Account Manager help page.
|
|
|
|
*
|
2006-05-07 09:02:52 +00:00
|
|
|
* @author Michael Duergner
|
2008-02-03 18:37:05 +00:00
|
|
|
* @author Roland Gruber
|
2004-10-30 16:46:06 +00:00
|
|
|
* @package Help
|
|
|
|
*/
|
|
|
|
|
2008-02-03 18:37:05 +00:00
|
|
|
/** LDAP connection */
|
2003-06-07 15:00:06 +00:00
|
|
|
include_once("../lib/ldap.inc");
|
2004-10-30 16:46:06 +00:00
|
|
|
|
2008-02-03 18:37:05 +00:00
|
|
|
/** configuration */
|
2003-07-23 07:21:04 +00:00
|
|
|
include_once("../lib/config.inc");
|
2003-05-07 20:07:25 +00:00
|
|
|
|
2008-02-03 18:37:05 +00:00
|
|
|
session_save_path("../sess");
|
|
|
|
@session_start();
|
2003-05-08 20:16:32 +00:00
|
|
|
|
2008-02-03 18:37:05 +00:00
|
|
|
/** status messages */
|
|
|
|
include_once("../lib/status.inc");
|
2004-10-30 16:46:06 +00:00
|
|
|
|
2008-02-03 18:37:05 +00:00
|
|
|
/** help data */
|
2003-05-12 17:36:24 +00:00
|
|
|
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
|
|
|
|
2003-09-21 20:29:19 +00:00
|
|
|
setlanguage();
|
|
|
|
|
|
|
|
|
2004-10-30 16:46:06 +00:00
|
|
|
/**
|
|
|
|
* Print HTML header of the help page.
|
|
|
|
*/
|
2003-05-08 20:16:32 +00:00
|
|
|
function echoHTMLHead()
|
|
|
|
{
|
2003-07-23 07:21:04 +00:00
|
|
|
echo $_SESSION['header'];
|
2003-05-08 20:16:32 +00:00
|
|
|
?>
|
|
|
|
<title>LDAP Account Manager Help Center</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../style/layout.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2003-09-03 19:13:38 +00:00
|
|
|
<?php
|
2003-05-08 20:16:32 +00:00
|
|
|
}
|
|
|
|
|
2004-10-30 16:46:06 +00:00
|
|
|
/**
|
|
|
|
* Print HTML footer of the help page.
|
|
|
|
*/
|
2003-05-08 20:16:32 +00:00
|
|
|
function echoHTMLFoot()
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
</body>
|
|
|
|
</html>
|
2003-09-03 19:13:38 +00:00
|
|
|
<?php
|
2003-05-08 20:16:32 +00:00
|
|
|
}
|
|
|
|
|
2004-10-30 16:46:06 +00:00
|
|
|
/**
|
|
|
|
* Print help site for a specific help number.
|
|
|
|
*
|
|
|
|
* @param array The help entry that is to be displayed.
|
|
|
|
* @param array The help variables that are used to replace the spacer in the help text.
|
|
|
|
*/
|
2004-03-15 17:34:35 +00:00
|
|
|
function displayHelp($helpEntry,$helpVariables) {
|
2008-02-03 18:37:05 +00:00
|
|
|
echoHTMLHead();
|
|
|
|
echo " <h1 class=\"help\">" . $helpEntry['Headline'] . "</h1>\n";
|
|
|
|
$format = " <p class=\"help\">" . $helpEntry['Text'] . "</p>\n";
|
|
|
|
array_unshift($helpVariables,$format);
|
|
|
|
call_user_func_array("printf",$helpVariables);
|
|
|
|
if(isset($helpEntry['SeeAlso']) && is_array($helpEntry['SeeAlso'])) {
|
|
|
|
echo ' <p class="help">' . _('See also') . ': <a class="helpSeeAlso" href="' . $helpEntry['SeeAlso']['link'] . '">' . $helpEntry['SeeAlso']['text'] . '</a></p>';
|
2003-05-12 17:36:24 +00:00
|
|
|
}
|
2008-02-03 18:37:05 +00:00
|
|
|
echoHTMLFoot();
|
2004-03-15 16:30:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If no help number was submitted print error message */
|
2004-10-30 16:46:06 +00:00
|
|
|
if(!isset($_GET['HelpNumber']))
|
2004-03-15 16:30:52 +00:00
|
|
|
{
|
2004-11-06 13:05:34 +00:00
|
|
|
$errorMessage = "Sorry no help number submitted.";
|
2004-03-15 16:30:52 +00:00
|
|
|
echoHTMLHead();
|
|
|
|
statusMessage("ERROR","",$errorMessage);
|
|
|
|
echoHTMLFoot();
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$helpEntry = array();
|
|
|
|
|
2005-09-12 15:37:23 +00:00
|
|
|
// module help
|
|
|
|
if(isset($_GET['module']) && !($_GET['module'] == 'main')) {
|
2004-03-15 16:30:52 +00:00
|
|
|
include_once("../lib/modules.inc");
|
2004-10-30 16:46:06 +00:00
|
|
|
if(isset($_GET['scope'])) {
|
|
|
|
$helpEntry = getHelp($_GET['module'],$_GET['HelpNumber'],$_GET['scope']);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$helpEntry = getHelp($_GET['module'],$_GET['HelpNumber']);
|
|
|
|
}
|
2004-09-08 17:41:35 +00:00
|
|
|
if(!$helpEntry) {
|
|
|
|
$variables = array();
|
2004-10-30 16:46:06 +00:00
|
|
|
array_push($variables,$_GET['HelpNumber']);
|
2004-09-08 17:41:35 +00:00
|
|
|
array_push($variables,$_GET['module']);
|
|
|
|
$errorMessage = _("Sorry this help id ({bold}%s{endbold}) is not available for this module ({bold}%s{endbold}).");
|
|
|
|
echoHTMLHead();
|
|
|
|
statusMessage("ERROR","",$errorMessage,$variables);
|
|
|
|
echoHTMLFoot();
|
|
|
|
exit;
|
|
|
|
}
|
2004-03-15 16:30:52 +00:00
|
|
|
}
|
2005-09-12 15:37:23 +00:00
|
|
|
// help entry in help.inc
|
2004-03-15 16:30:52 +00:00
|
|
|
else {
|
|
|
|
/* If submitted help number is not in help/help.inc print error message */
|
|
|
|
if(!array_key_exists($_GET['HelpNumber'],$helpArray))
|
2003-05-12 17:36:24 +00:00
|
|
|
{
|
2004-03-15 16:30:52 +00:00
|
|
|
$variables = array();
|
|
|
|
array_push($variables,$_GET['HelpNumber']);
|
|
|
|
$errorMessage = _("Sorry this help number ({bold}%d{endbold}) is not available.");
|
2003-05-12 17:36:24 +00:00
|
|
|
echoHTMLHead();
|
2004-03-15 16:30:52 +00:00
|
|
|
statusMessage("ERROR","",$errorMessage,$variables);
|
2003-05-08 20:16:32 +00:00
|
|
|
echoHTMLFoot();
|
2004-03-15 16:30:52 +00:00
|
|
|
exit;
|
2003-05-08 20:16:32 +00:00
|
|
|
}
|
2004-03-15 16:30:52 +00:00
|
|
|
else {
|
|
|
|
$helpEntry = $helpArray[$_GET['HelpNumber']];
|
2003-05-08 20:16:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-15 17:34:35 +00:00
|
|
|
$i = 1;
|
|
|
|
$moreVariables = true;
|
|
|
|
$helpVariables = array();
|
|
|
|
while($moreVariables) {
|
|
|
|
if(isset($_GET['var' . $i])) {
|
|
|
|
array_push($helpVariables,$_GET['var' . $i]);
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$moreVariables = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
displayHelp($helpEntry,$helpVariables);
|
2003-05-08 20:16:32 +00:00
|
|
|
|
2004-03-15 16:30:52 +00:00
|
|
|
?>
|