From 59b56c2283c12c8a82144a836faee4f12b15e5c1 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Thu, 27 Apr 2023 13:32:25 +0200 Subject: Updated 5 files and deleted 2 files (automated) --- pages/jobs.inc | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'pages/jobs.inc') diff --git a/pages/jobs.inc b/pages/jobs.inc index 6723175..c00e35c 100644 --- a/pages/jobs.inc +++ b/pages/jobs.inc @@ -4,6 +4,7 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/init.inc"; global $title; gl require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/util/functions.inc'; $history = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/history.json"), true); +$running = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/running.json"), true); if (isset($_GET["enqueue"]) && isset($history[(int)$_GET["enqueue"]])) { createJob(explode("(", $history[(int)$_GET["enqueue"]]["name"])[0], $history[(int)$_GET["enqueue"]]["options"]); @@ -73,6 +74,16 @@ require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc';
+ $file): $item = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/jobs/" . $file), true); ?> +
+
( $value): echo($name . "=" . json_encode($value)); endforeach; ?>)
+
+
RunningPending
+
+ + $item): ?>
-- cgit