Repair sort and get value wifi connection
This commit is contained in:
		@@ -1,5 +1,6 @@
 | 
			
		||||
<!DOCTYPE html>
 | 
			
		||||
<html lang="en">
 | 
			
		||||
 | 
			
		||||
<head>
 | 
			
		||||
	<?php
 | 
			
		||||
	$partial = new Partial('head');
 | 
			
		||||
@@ -8,6 +9,7 @@
 | 
			
		||||
	?>
 | 
			
		||||
	<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>
 | 
			
		||||
@@ -27,7 +29,6 @@
 | 
			
		||||
					<th><a href="device?sort=name&sortType=<?php echo $SORTTYPE; ?>">Name</a><i class="fa"><?php echo (!empty($SORTICON['name']) ? $SORTICON['name'] : ""); ?></i></th>
 | 
			
		||||
					<th><a href="device?sort=room&sortType=<?php echo $SORTTYPE; ?>">Room</a><i class="fa"><?php echo (!empty($SORTICON['room']) ? $SORTICON['room'] : ""); ?></i></th>
 | 
			
		||||
					<th><a href="device?sort=signal&sortType=<?php echo $SORTTYPE; ?>">Signal</a><i class="fa"><?php echo (!empty($SORTICON['signal']) ? $SORTICON['signal'] : ""); ?></i></th>
 | 
			
		||||
					
 | 
			
		||||
					<th><a href="device?sort=firmware&sortType=<?php echo $SORTTYPE; ?>">Firmware</a><i class="fa"><?php echo (!empty($SORTICON['firmware']) ? $SORTICON['firmware'] : ""); ?></i></th>
 | 
			
		||||
					<th>
 | 
			
		||||
						<a href="device?sort=ip&sortType=<?php echo $SORTTYPE; ?>">IP Address</a><i class="fa"><?php echo (!empty($SORTICON['ip']) ? $SORTICON['ip'] : ""); ?></i><br>
 | 
			
		||||
@@ -51,53 +52,53 @@
 | 
			
		||||
									<input class="input" type="text" onchange="this.form.submit();" name="deviceName" value="<?php echo (!empty($device['name']) ? $device['name'] : ""); ?>">
 | 
			
		||||
								</form>
 | 
			
		||||
							</td>
 | 
			
		||||
							<td><?php echo (!empty($device['signal']) ? $device['signal'] : ""); ?></td>
 | 
			
		||||
							<td>
 | 
			
		||||
							<form method="post" action="">
 | 
			
		||||
								<input type="hidden" name="deviceId" value="<?php echo (!empty($device['device_id']) ? $device['device_id'] : ""); ?>">
 | 
			
		||||
								<select class="input" name="deviceRoomId" onchange="this.form.submit();">
 | 
			
		||||
								<?php
 | 
			
		||||
									if (!empty ($ROOMS)) {
 | 
			
		||||
										foreach ($ROOMS as $key => $room) {
 | 
			
		||||
											echo '<option value="' . $room['room_id'] . '" ' . ($device['room_id'] == $room['room_id'] ? 'selected' : '') . '>' . $room['name'] . '</option>';
 | 
			
		||||
								<form method="post" action="">
 | 
			
		||||
									<input type="hidden" name="deviceId" value="<?php echo (!empty($device['device_id']) ? $device['device_id'] : ""); ?>">
 | 
			
		||||
									<select class="input" name="deviceRoomId" onchange="this.form.submit();">
 | 
			
		||||
										<?php
 | 
			
		||||
										if (!empty($ROOMS)) {
 | 
			
		||||
											foreach ($ROOMS as $key => $room) {
 | 
			
		||||
												echo '<option value="' . $room['room_id'] . '" ' . ($device['room_id'] == $room['room_id'] ? 'selected' : '') . '>' . $room['name'] . '</option>';
 | 
			
		||||
											}
 | 
			
		||||
										}
 | 
			
		||||
									}
 | 
			
		||||
								?>
 | 
			
		||||
								</select>
 | 
			
		||||
							</form>
 | 
			
		||||
										?>
 | 
			
		||||
									</select>
 | 
			
		||||
								</form>
 | 
			
		||||
							</td>
 | 
			
		||||
							<td><?php echo (!empty($device['signal']) ? $device['signal'] : ""); ?></td>
 | 
			
		||||
							<td>
 | 
			
		||||
								<?php if (!empty($device['mac'])) : ?>
 | 
			
		||||
									<?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 = "fa-arrow-circle-up";
 | 
			
		||||
												$color = "#6495ED";
 | 
			
		||||
											} else {
 | 
			
		||||
												$icon = "fa-times-circle";
 | 
			
		||||
												$color = "red";
 | 
			
		||||
											}
 | 
			
		||||
									$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 = "fa-arrow-circle-up";
 | 
			
		||||
											$color = "#6495ED";
 | 
			
		||||
										} else {
 | 
			
		||||
											$icon = "fa-times-circle";
 | 
			
		||||
											$color = "red";
 | 
			
		||||
										}
 | 
			
		||||
									}
 | 
			
		||||
									?>
 | 
			
		||||
 | 
			
		||||
									<i class="fa <?php echo $icon; ?>" style="color: <?php echo $color; ?>;"></i>
 | 
			
		||||
									<?php echo $device['firmware_hash'] ?>
 | 
			
		||||
									<button class="fa custom-file-input" type="button" onclick="document.getElementById('deviceFirmware-<?php echo $device['device_id']?>').click();"></button>
 | 
			
		||||
									<button class="fa custom-file-input" type="button" onclick="document.getElementById('deviceFirmware-<?php echo $device['device_id'] ?>').click();"></button>
 | 
			
		||||
									<form style="display: none;" method="post" action="" enctype="multipart/form-data">
 | 
			
		||||
										<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="">
 | 
			
		||||
										<input type="file" onchange="this.form.submit();" name="deviceFirmware" id="deviceFirmware-<?php echo $device['device_id'] ?>" value="">
 | 
			
		||||
									</form>
 | 
			
		||||
								<?php endif; ?>
 | 
			
		||||
								<div type="float: clear;"></div>
 | 
			
		||||
							</td>
 | 
			
		||||
							<td><?php echo (!empty($device['mac']) ? $device['mac'] : ""); ?><br>
 | 
			
		||||
							<?php echo (!empty($device['ip_address']) ? $device['ip_address'] : ""); ?><br>
 | 
			
		||||
							<?php echo (!empty($device['token']) ? $device['token'] : ""); ?></td>
 | 
			
		||||
								<?php echo (!empty($device['ip_address']) ? $device['ip_address'] : ""); ?><br>
 | 
			
		||||
								<?php echo (!empty($device['token']) ? $device['token'] : ""); ?></td>
 | 
			
		||||
							<td>
 | 
			
		||||
								<?php if (!empty($device['mac'])) : ?>
 | 
			
		||||
									<form method="post" action="">
 | 
			
		||||
@@ -121,11 +122,11 @@
 | 
			
		||||
		//TODO js do main.js
 | 
			
		||||
		?>
 | 
			
		||||
		<script>
 | 
			
		||||
			$( function() {
 | 
			
		||||
			    $( "#sortable" ).sortable();
 | 
			
		||||
			    $( "#sortable" ).disableSelection();
 | 
			
		||||
			  } );
 | 
			
		||||
			$(function() {
 | 
			
		||||
				$("#sortable").sortable();
 | 
			
		||||
				$("#sortable").disableSelection();
 | 
			
		||||
			});
 | 
			
		||||
		</script>
 | 
			
		||||
</body>
 | 
			
		||||
 | 
			
		||||
</html>
 | 
			
		||||
</html>
 | 
			
		||||
		Reference in New Issue
	
	Block a user