manual update/widget background and colour

This commit is contained in:
Karl Hudgell 2016-02-06 18:50:28 +00:00
parent 2d5ecc9a94
commit 9f4ac346dd
6 changed files with 37 additions and 14 deletions

View File

@ -1,16 +1,11 @@
<html>
<head>
</head>
<body>
<?php include '../../config.php';?>
<?php
if ($customwidgetbackgroud > "0") {
echo background: <?php echo $custombackground; ?>;
} else {
echo background: #FFF;
}
echo "background: $widgetbackgroudcolour;";
} else {
echo "background: #FFF;";
}
?>
?>
</body>
</html>

View File

@ -1,2 +1,2 @@
<a href="set1.php" target="main">General</a> - <a href="set2.php" target="main">SAB/Couch/Sick</a> - <a href="set3.php" target="main">Others</a> - <a href="set4.php" target="main">Drive Space</a> - <a href="set5.php" target="main">RSS/Server Statuses</a> - <a href="PicUpload.html" target="main">Picture Upload</a> - <a href="ManUpdate.php" target="main">Manual Update</a>
<a href="set1.php" target="main">General</a> - <a href="set2.php" target="main">SAB/Couch/Sick</a> - <a href="set3.php" target="main">Others</a> - <a href="set4.php" target="main">Drive Space</a> - <a href="set5.php" target="main">RSS/Server Statuses</a> - <a href="PicUpload.html" target="main">Picture Upload</a> - <a href="/../ManUpdate.php" target="main">Manual Update</a>

View File

@ -11,6 +11,8 @@
<?php include '../config.php';?>
<body>
<form action="write1.php" method="post">
<div style="width:100%;"> <!-- Main Div -->
<div style="float:left; width:50%;">
Your Name: <input type="text" value="<?php echo $yourname ?>" name="YN" /><br />
Server Address: <input type="text" value="<?php echo $base ?>" name="YB" /><br />
<br />
@ -24,6 +26,8 @@
Clock Widget Enabled: <input name="clockvisible" id="id" type="checkbox" <?php if($clockvisible > "0") echo "checked=checked; "; ?> /><br />
KKnowledge Widget Enabled: <input name="kknowledgefeedvisible" id="id" type="checkbox" <?php if($kknowledgefeedvisible > "0") echo "checked=checked; "; ?> /><br />
Klips Widget Enabled: <input name="webclipfeedvisible" id="id" type="checkbox" <?php if($webclipfeedvisible > "0") echo "checked=checked; "; ?> /><br /><br />
</div>
<div style="float:right; width:50%; ">
Konvos Chatbox Enabled: <input name="konvoschat" id="id" type="checkbox" <?php if($konvoschat > "0") echo "checked=checked; "; ?> /><br />
Konvos Widget Enabled: <input name="konvosvisible" id="id" type="checkbox" <?php if($konvosvisible > "0") echo "checked=checked; "; ?> /><br />
<br />
@ -31,8 +35,13 @@
<br />
Show Version : <input name="showversion" id="id" type="checkbox" <?php if($showversion > "0") echo "checked=checked; "; ?> /><br />
<br />
Widget Background: <input name="widgetvisible" id="id" type="checkbox" <?php if($widgetbackgroud > "0") echo "checked=checked; "; ?> /><br />
Custom Widget Background: <input name="customwidget" id="id" type="checkbox" <?php if($customwidgetbackgroud > "0") echo "checked=checked; "; ?> /><br />
Background Colour: <input class="color" name="widgetbackgroudcolour" value="<?php echo $widgetbackgroudcolour ?>"</td>
<br />
Reset Widgets : <input id="def_button" type="button" value="Set to Default" onclick="myfunction()"><br />
<br />
<input type="submit" name="submit" value="Update" />
</form>
</div>
</body>

View File

@ -1,6 +1,8 @@
<?php include '../config.php';?>
<form action="write2.php" method="post">
<div style="width:100%;"> <!-- Main Div -->
<div style="float:left; width:50%;">
SAB Enabled: <input name="sabvisible" id="id" type="checkbox" <?php if($sabvisible > "0") echo "checked=checked; "; ?> /><br />
SAB Port: <input type="text" value="<?php echo $sabport ?>" name="sabport" /><br />
SAB Name: <input type="text" value="<?php echo $sabname ?>" name="sabname" /><br />
@ -66,7 +68,8 @@ global $sickpicname;
}
?>
</div>
<div style="float:right; width:50%; ">
Couch Enabled: <input name="couchvisible" id="id" type="checkbox" <?php if($couchvisible > "0") echo "checked=checked; "; ?> /><br />
Couch Adults : <input type="radio" name="cpadultsvisible" value="1" <?php if($cpadultsvisible > "0") echo "checked=checked; "; ?>>Enabled / <input type="radio" name="cpadultsvisible" value="2" <?php if($cpadultsvisible < "1") echo "checked=checked; "; ?>>Disabled<br />
Couch Adults Port: <input type="text" value="<?php echo $cpadults ?>" name="cpadults" /><br />
@ -115,4 +118,5 @@ global $cpkidspicname;
?>
<input type="submit" name="submit" value="Update" />
</form>
</form>
</div>

View File

@ -12,6 +12,9 @@ $konvosvisible1 = $_POST['konvosvisible'];
$kodivisible1 = $_POST['kodivisible'];
$backgroundcolor1 = $_POST['backgroundcolor'];
$showversion1 = $_POST['showversion'];
$widgetbackgroud1 = $_POST['widgetvisible'];
$customwidgetbackgroud1 = $_POST['customwidget'];
$widgetbackgroudcolour1 = $_POST['widgetbackgroudcolour'];
//
$fl='../config.php';
@ -67,6 +70,18 @@ $content = preg_replace( '/\$custombackground = \"(.*?)\";/', '$custombackgrou
} else {
$content = preg_replace( '/\$kodivisible = \"(.*?)\";/', '$kodivisible = "1";', $content);
}
// Widget Config
if (empty($widgetbackgroud1)) {
$content = preg_replace( '/\$widgetbackgroud = \"(.*?)\";/', '$widgetbackgroud = "0";', $content);
} else {
$content = preg_replace( '/\$widgetbackgroud = \"(.*?)\";/', '$widgetbackgroud = "1";', $content);
}
if (empty($customwidgetbackgroud1)) {
$content = preg_replace( '/\$customwidgetbackgroud = \"(.*?)\";/', '$customwidgetbackgroud = "0";', $content);
} else {
$content = preg_replace( '/\$customwidgetbackgroud = \"(.*?)\";/', '$customwidgetbackgroud = "1";', $content);
}
$content = preg_replace( '/\$widgetbackgroudcolour = \"(.*?)\";/', '$widgetbackgroudcolour = "#'.$widgetbackgroudcolour1.'";', $content);
/*write operation ->*/ $tmp =fopen($fl, "w"); fwrite($tmp, $content); fclose($tmp);
//sleep for 5 seconds