1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
<?php
// IPplan v4.92a
// Aug 24, 2001
//
// 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.
//
require_once("../config.php");
require_once("../ipplanlib.php");
require_once("../adodb/adodb.inc.php");
require_once("../layout/class.layout");
require_once("../auth.php");
$auth = new SQLAuthenticator(REALM, REALMERROR);
// And now perform the authentication
$grps=$auth->authenticate();
// explicitly cast variables as security measure against SQL injection
list($paranoid, $ipplanParanoid, $poll, $ipplanPoll, $lang) = myRegister("I:paranoid I:ipplanParanoid I:poll I:ipplanPoll S:lang");
// set language
if ($lang) {
myLanguage($lang.":".dirname(dirname(__FILE__)));
}
else {
isset($_COOKIE["ipplanLanguage"]) && myLanguage($_COOKIE['ipplanLanguage']);
}
//setdefault("window",array("bgcolor"=>"white"));
//setdefault("table",array("cellpadding"=>"0"));
//setdefault("text",array("size"=>"2"));
$title=my_("Change display settings");
newhtml($p);
$results="";
if ($_POST) {
setcookie("ipplanTheme",$theme, time() + 10000000, "/");
// Make change immediate.
$_COOKIE["ipplanTheme"]=$theme;
setcookie("ipplanParanoid","$paranoid",time() + 10000000, "/");
$ipplanParanoid=$paranoid; // to update display once page submitted
setcookie("ipplanPoll","$poll",time() + 10000000, "/");
$ipplanPoll=$poll; // to update display once page submitted
// set language cookie if language changed by user
// language includes path of ipplan root seperated by :
if ($lang) {
setcookie("ipplanLanguage",$lang.":".dirname(dirname(__FILE__)),time() + 10000000, "/");
$_COOKIE['ipplanLanguage']=$lang.":".dirname(dirname(__FILE__));
//isset($_COOKIE["ipplanLanguage"]) && myLanguage($_COOKIE['ipplanLanguage']);
//isset($_COOKIE["ipplanLanguage"]) && myLanguage($lang.":".dirname(dirname(__FILE__)));
}
$results=my_("Settings changed");
}
// Call myheading after setting
// the theme variable any change shows up
// immediately.
$w=myheading($p, $title);
insert($w,text($results));
//if (!$_POST) {
// display opening text
insert($w,heading(3, "$title."));
// start form
insert($w, $f = form(array("method"=>"post",
"action"=>$_SERVER["PHP_SELF"])));
insert($f, $con=container("fieldset",array("class"=>"fieldset")));
insert($con, $legend=container("legend",array("class"=>"legend")));
insert($legend,text(my_("Change display settings for this workstation")));
insert($con,textbr(my_("Setting paranoid prompts 'Are you sure?' for all deletes")));
insert($con,selectbox(array("0"=>my_("No"),
"1"=>my_("Yes")),
array("name"=>"paranoid"),
(int)$ipplanParanoid));
insert($con,generic("br"));
insert($con,generic("br"));
insert($con,textbr(my_("Setting poll forces a scan of the IP address before assigning it, and warns the user if the address is active. This slows down address assignment.")));
insert($con,selectbox(array("0"=>my_("No"),
"1"=>my_("Yes")),
array("name"=>"poll"),
(int)$ipplanPoll));
insert($con,textbr());
if(extension_loaded("gettext") and LANGCHOICE) {
insert($con,block("<br>Language:<br>"));
// insert($f,block('<select NAME="lang" ONCHANGE="submit()">'));
insert($con,block('<select NAME="lang">'));
foreach($iso_codes as $key => $value)
// look only at language part of cookie
if (isset($_COOKIE["ipplanLanguage"]) and substr($_COOKIE['ipplanLanguage'],0,5)==$key)
insert($con,block('<option VALUE="'.$key.'" SELECTED>'.$value."\n"));
else
insert($con, block('<option VALUE="'.$key.'">'.$value."\n"));
insert($con,block("</select>"));
insert($con,textbr());
}
// Konqueror and Safari browsers do not support overflow: auto css tag so use custom stylesheet
if (!stristr($_SERVER["HTTP_USER_AGENT"], "konqueror") and
!stristr($_SERVER["HTTP_USER_AGENT"], "safari")) {
insert($f,textbr());
insert($con,generic("br"));
insert($con,block(my_("Theme:")));
insert($con,generic("br"));
$theme=isset($_COOKIE["ipplanTheme"]) ? $_COOKIE["ipplanTheme"] : "";
$themelist=array();
foreach (array_keys($config_themes) as $th) {
$themelist[$th]=$th;
}
insert($con,selectbox($themelist,array("name"=>"theme"),$theme));
}
insert($f,submit(array("value"=>my_("Submit"))));
insert($f,freset(array("value"=>my_("Clear"))));
printhtml($p);
?>
|