project structure refactoring

This commit is contained in:
xinatorus
2020-04-27 21:08:38 +02:00
parent e75de72afd
commit 8fd7fe8329
8 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
if (isset($_POST) && !empty($_POST)){
if (isset($_POST['modalFinal']) && $_POST['modalFinal'] != "") {
$subDeviceIds = $_POST['devices'];
foreach ($subDeviceIds as $subDeviceId) {
DashboardManager::Add($subDeviceId);
}
}
header('Location: ' . BASEDIR . strtolower(basename(__FILE__, '.php')));
die();
}
?>