Add function on change room

This commit is contained in:
Haitem
2020-09-08 18:00:44 +02:00
parent 32521d0ed3
commit 2c6e7e2ecc
2 changed files with 18 additions and 10 deletions

View File

@@ -15,12 +15,15 @@ if (!empty ($_POST)){
}
if (isset ($_POST['deviceCommand']) && !empty ($_POST['deviceId'])) {
$deviceManager->edit ($_POST['deviceId'], array ('command' => $_POST['deviceCommand']));
}else if (!empty ($_POST['deviceCommand'])) {
} else if (!empty ($_POST['deviceCommand'])) {
$devices = $deviceManager->getAllDevices();
foreach ($devices as $key => $device) {
$deviceManager->edit ($device['device_id'], array ('command' => $_POST['deviceCommand']));
}
}
if (!empty ($_POST['deviceRoomId']) && !empty ($_POST['deviceId'])) {
$deviceManager->edit ($_POST['deviceId'], array ('room_id' => $_POST['deviceRoomId']));
}
header('Location: ./device');
die();
}