Committed for move

This commit is contained in:
2023-05-15 16:45:18 -05:00
parent 343a01cf61
commit 6194dda84a
8 changed files with 172 additions and 11 deletions

27
api/crontab_view.php Normal file
View File

@@ -0,0 +1,27 @@
<?php
/*
GET Variables
name: Name of crontab
*/
$GLOBALS['db'] = new SQLite3('../../webcron.db');
if (!array_key_exists("name", $_GET)) {
$name = "";
} else {
$name = $_GET["name"];
}
$db = $GLOBALS['db'];
$id = $db->querySingle("select crontab_id from crontabs where crontab_path like '%/$name';");
if (empty($id)){
echo "$name is not a valid crontab";
} else {
$data = $db->querySingle("SELECT crontab_data FROM crontabs WHERE crontab_id = $id;");
echo "$data";
}
?>