2020-08-31 19:23:23 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<?php
|
|
|
|
$partial = new Partial('head');
|
|
|
|
$partial->prepare('baseDir', $BASEDIR);
|
|
|
|
$partial->render();
|
|
|
|
?>
|
|
|
|
<title><?php echo $TITLE ?></title>
|
|
|
|
</head>
|
|
|
|
<body class="no-transitions">
|
|
|
|
<div class="row no-gutters main">
|
|
|
|
<div class="col-md-3 d-sm-none"></div>
|
|
|
|
<div class="col-md-3 nav-container">
|
|
|
|
<?php
|
|
|
|
$partial = new Partial('menu');
|
|
|
|
$partial->prepare('item', 'device');
|
2020-09-02 17:44:40 +00:00
|
|
|
$partial->prepare('langMng', $LANGMNG);
|
|
|
|
$partial->prepare('debugMod', $DEBUGMOD);
|
2020-08-31 19:23:23 +00:00
|
|
|
$partial->render();
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-9 main-body">
|
2020-08-31 20:45:05 +00:00
|
|
|
<table class="table is-fluid">
|
2020-08-31 19:23:23 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2020-08-31 20:45:05 +00:00
|
|
|
<th>#</th>
|
2020-08-31 19:23:23 +00:00
|
|
|
<th>Name</th>
|
2020-09-02 17:44:40 +00:00
|
|
|
<th>Room</th>
|
2020-08-31 19:23:23 +00:00
|
|
|
<th>Firmware</th>
|
2020-09-02 17:44:40 +00:00
|
|
|
<th>IP Address<br>(Mac)</th>
|
2020-09-03 20:15:59 +00:00
|
|
|
<th>Action
|
|
|
|
<form method="post" action="">
|
|
|
|
<button class="fa custom-file-input" type="submit" name="deviceCommand" value="reset" title="Reset All"><b></b></button>
|
|
|
|
<div style="float: clear;"></div>
|
|
|
|
</form>
|
|
|
|
</th>
|
2020-08-31 19:23:23 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2020-09-02 17:44:40 +00:00
|
|
|
<?php if (!empty($DEVICES)) : ?>
|
|
|
|
<?php foreach ($DEVICES as $device) : ?>
|
2020-08-31 19:23:23 +00:00
|
|
|
<tr>
|
2020-09-02 17:44:40 +00:00
|
|
|
<td><i class="fa">&#x<?php echo (!empty($device['icon']) ? $device['icon'] : ""); ?></i></td>
|
|
|
|
<td><?php echo (!empty($device['name']) ? $device['name'] : ""); ?></td>
|
|
|
|
<td>Room</td>
|
2020-08-31 19:23:23 +00:00
|
|
|
<td>
|
2020-09-02 17:44:40 +00:00
|
|
|
<?php if (!empty($device['mac'])) : ?>
|
2020-09-07 09:18:17 +00:00
|
|
|
<?php
|
|
|
|
$icon = "fa-circle";
|
|
|
|
$color = "yellow";
|
|
|
|
if (!empty($device['firmware_hash'])) {
|
|
|
|
if ($device['firmware_hash'] == "true") {
|
|
|
|
$icon = "fa-check-circle";
|
|
|
|
$color = "green";
|
|
|
|
} else if ($device['firmware_hash'] == "need") {
|
|
|
|
$icon = "arrow-circle-up";
|
|
|
|
} else {
|
|
|
|
$icon = "fa-times-circle";
|
|
|
|
$color = "red";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<i class="fa <?php echo $icon; ?>" style="color: <?php echo $color; ?>"></i>
|
2020-09-02 17:44:40 +00:00
|
|
|
<?php echo $device['firmware_hash'] ?>
|
|
|
|
<button class="fa custom-file-input" type="button" onclick="document.getElementById('deviceFirmware-<?php echo $device['device_id']?>').click();"></button>
|
2020-08-31 19:23:23 +00:00
|
|
|
<form style="display: none;" method="post" action="" enctype="multipart/form-data">
|
2020-09-02 17:44:40 +00:00
|
|
|
<input type="hidden" name="deviceId" value="<?php echo (!empty($device['device_id']) ? $device['device_id'] : ""); ?>">
|
|
|
|
<input type="file" onchange="this.form.submit();" name="deviceFirmware" id="deviceFirmware-<?php echo $device['device_id']?>" value="">
|
2020-08-31 19:23:23 +00:00
|
|
|
</form>
|
|
|
|
<?php endif; ?>
|
|
|
|
<div type="float: clear;"></div>
|
|
|
|
</td>
|
2020-09-02 17:44:40 +00:00
|
|
|
<td><?php echo (!empty($device['mac']) ? $device['mac'] : ""); ?><br><?php echo (!empty($device['ip_address']) ? $device['ip_address'] : ""); ?></td>
|
2020-08-31 19:23:23 +00:00
|
|
|
<td>
|
2020-09-02 17:44:40 +00:00
|
|
|
<?php if (!empty($device['mac'])) : ?>
|
|
|
|
<form method="post" action="">
|
|
|
|
<input type="hidden" name="deviceId" value="<?php echo (!empty($device['device_id']) ? $device['device_id'] : ""); ?>">
|
|
|
|
<button class="fa custom-file-input" <?php echo (!empty($device['command']) && $device['command'] == "reset" ? "style=\"color:red;\"" : ""); ?> type="submit" name="deviceCommand" value="reset" title="Reset"></button>
|
|
|
|
<button class="fa custom-file-input" <?php echo (!empty($device['command']) && $device['command'] == "config" ? "style=\"color:red;\"" : ""); ?> type="submit" name="deviceCommand" value="config" title="Config"></button>
|
|
|
|
<div style="float: clear;"></div>
|
|
|
|
</form>
|
|
|
|
<?php endif; ?>
|
2020-08-31 19:23:23 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
2020-09-02 17:44:40 +00:00
|
|
|
<?php
|
|
|
|
$partial = new Partial('footer');
|
|
|
|
$partial->prepare('baseDir', BASEDIR);
|
|
|
|
$partial->render();
|
|
|
|
//TODO js do main.js
|
|
|
|
?>
|
|
|
|
</body>
|
|
|
|
|
2020-08-31 19:23:23 +00:00
|
|
|
</html>
|