14 lines
326 B
PHP
Raw Normal View History

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