Initial commit

This commit is contained in:
2026-01-02 20:52:43 +01:00
commit e9d2257d73
854 changed files with 164132 additions and 0 deletions

16
actions/save-settings.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
$type = $_GET["type"];
$value = $_GET["value"];
$settings = json_decode(file_get_contents("../settings.json"), true);
$settings[$type] = $value;
file_put_contents("../temp.json",json_encode($settings, true));
print("true");
?>