responsive design

This commit is contained in:
Roland Gruber 2018-05-31 09:11:05 +02:00
parent e2e75ece20
commit 4940ba069f
1 changed files with 13 additions and 14 deletions

View File

@ -63,12 +63,14 @@ include_once("../help/help.inc"); // Include help/help.inc which provides $helpA
*/ */
function echoHTMLHead() { function echoHTMLHead() {
echo $_SESSION['header']; echo $_SESSION['header'];
$title = "LDAP Account Manager Help";
printHeaderContents($title, '..');
?> ?>
<title>LDAP Account Manager Help Center</title>
<link rel="stylesheet" type="text/css" href="../style/500_layout.css">
</head> </head>
<body> <body class="admin">
<?php <?php
// include all JavaScript files
printJsIncludes('..');
} }
/** /**
@ -88,14 +90,14 @@ function echoHTMLFoot() {
*/ */
function displayHelp($helpEntry) { function displayHelp($helpEntry) {
echoHTMLHead(); echoHTMLHead();
echo " <h1 class=\"help\">" . $helpEntry['Headline'] . "</h1>\n"; echo "<h1 class=\"help\">" . $helpEntry['Headline'] . "</h1>\n";
$format = " <p class=\"help\">" . $helpEntry['Text'] . "</p>\n"; $format = "<p class=\"help\">" . $helpEntry['Text'] . "</p>\n";
if (isset($helpEntry['attr'])) { if (isset($helpEntry['attr'])) {
$format .= '<br><hr>' . _('Technical name') . ': <i>' . $helpEntry['attr'] . '</i>'; $format .= '<br><hr>' . _('Technical name') . ': <i>' . $helpEntry['attr'] . '</i>';
} }
echo $format; echo $format;
if(isset($helpEntry['SeeAlso']) && is_array($helpEntry['SeeAlso'])) { 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>'; echo '<p class="help">' . _('See also') . ': <a class="helpSeeAlso" href="' . $helpEntry['SeeAlso']['link'] . '">' . $helpEntry['SeeAlso']['text'] . '</a></p>';
} }
echoHTMLFoot(); echoHTMLFoot();
} }
@ -104,7 +106,7 @@ function displayHelp($helpEntry) {
if (!isset($_GET['HelpNumber'])) { if (!isset($_GET['HelpNumber'])) {
$errorMessage = "Sorry no help number submitted."; $errorMessage = "Sorry no help number submitted.";
echoHTMLHead(); echoHTMLHead();
statusMessage("ERROR","",$errorMessage); statusMessage("ERROR", "", $errorMessage);
echoHTMLFoot(); echoHTMLFoot();
exit; exit;
} }
@ -121,12 +123,10 @@ if(isset($_GET['module']) && !($_GET['module'] == 'main') && !($_GET['module'] =
$helpEntry = getHelp($_GET['module'],$_GET['HelpNumber']); $helpEntry = getHelp($_GET['module'],$_GET['HelpNumber']);
} }
if (!$helpEntry) { if (!$helpEntry) {
$variables = array(); $variables = array(htmlspecialchars($_GET['HelpNumber']), htmlspecialchars($_GET['module']));
array_push($variables, htmlspecialchars($_GET['HelpNumber']));
array_push($variables, htmlspecialchars($_GET['module']));
$errorMessage = _("Sorry this help id ({bold}%s{endbold}) is not available for this module ({bold}%s{endbold})."); $errorMessage = _("Sorry this help id ({bold}%s{endbold}) is not available for this module ({bold}%s{endbold}).");
echoHTMLHead(); echoHTMLHead();
statusMessage("ERROR","",$errorMessage,$variables); statusMessage("ERROR", "", $errorMessage, $variables);
echoHTMLFoot(); echoHTMLFoot();
exit; exit;
} }
@ -135,11 +135,10 @@ if(isset($_GET['module']) && !($_GET['module'] == 'main') && !($_GET['module'] =
else { else {
/* If submitted help number is not in help/help.inc print error message */ /* If submitted help number is not in help/help.inc print error message */
if (!array_key_exists($_GET['HelpNumber'],$helpArray)) { if (!array_key_exists($_GET['HelpNumber'],$helpArray)) {
$variables = array(); $variables = array(htmlspecialchars($_GET['HelpNumber']));
array_push($variables, htmlspecialchars($_GET['HelpNumber']));
$errorMessage = _("Sorry this help number ({bold}%s{endbold}) is not available."); $errorMessage = _("Sorry this help number ({bold}%s{endbold}) is not available.");
echoHTMLHead(); echoHTMLHead();
statusMessage("ERROR","",$errorMessage,$variables); statusMessage("ERROR", "", $errorMessage, $variables);
echoHTMLFoot(); echoHTMLFoot();
exit; exit;
} }