PHP_SMART_HOME_V3/app/controls/dashboard.php

14 lines
326 B
PHP
Raw Normal View History

2019-08-23 11:39:42 +00:00
<?php
if (isset($_POST) && !empty($_POST)){
2019-10-18 13:38:04 +00:00
if (isset($_POST['modalFinal']) && $_POST['modalFinal'] != "") {
2019-08-23 11:39:42 +00:00
$subDeviceIds = $_POST['devices'];
foreach ($subDeviceIds as $subDeviceId) {
DashboardManager::Add($subDeviceId);
}
}
2019-10-11 14:32:05 +00:00
header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')));
2019-08-23 11:39:42 +00:00
die();
}
?>