Files
webgui/plugins/dynamix.apcupsd/UPSdetails.page
T
2018-03-22 11:38:49 +01:00

36 lines
1.1 KiB
Plaintext

Menu="UPSsettings"
Title="UPS Details"
Tag="battery-0"
---
<?PHP
/* Copyright 2005-2017, Lime Technology
* Copyright 2012-2017, Bergware International.
* Copyright 2015, Dan Landon.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
<script>
function getUPSstatus() {
$.get('/plugins/dynamix.apcupsd/include/UPSstatus.php',{all:'true'},function(data) {
if (data) {
data = data.split(/\n/);
$('#ups_summary').html(data[0]);
$('#ups_status').html(data[1]);
}
setTimeout(getUPSstatus,15000);
});
}
$(getUPSstatus);
</script>
<table class="tablesorter shift">
<thead><tr><th style="width:15%">Key</th><th style="width:35%">Value</th><th style="width:15%">Key</th><th style="width:35%">Value</th></tr></thead>
<tbody id="ups_status"><tr><td colspan="4"><div class="spinner"></div></td></tr></tbody>
</table>