Moved php from cgi-bin to backend

This commit is contained in:
Oleg Sh
2024-10-10 20:17:45 +02:00
parent aac9da9d45
commit 1576a1c6e4
24 changed files with 100 additions and 100 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
$tempFilename = "../tmp/pluginsList.txt";
if (isset($_GET["reset"]))
{
unlink($tempFilename);
}
$res = "";
if (!file_exists($tempFilename))
{
$jsScripts = glob("../script/plugins/*.js");
$res = json_encode($jsScripts);
file_put_contents ($tempFilename, $res);
}
else
{
$res = file_get_contents($tempFilename);
}
echo $res;
?>