summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/includes/restfunctions.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole/includes/restfunctions.php')
-rw-r--r--admin/WebConsole/includes/restfunctions.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/admin/WebConsole/includes/restfunctions.php b/admin/WebConsole/includes/restfunctions.php
index b6729345..a748ef9a 100644
--- a/admin/WebConsole/includes/restfunctions.php
+++ b/admin/WebConsole/includes/restfunctions.php
@@ -30,6 +30,7 @@ define('OG_REST_CMD_RUN_TASK', 'task/run');
define('OG_REST_CMD_CREATE_SCHEDULE', 'schedule/create');
define('OG_REST_CMD_DELETE_SCHEDULE', 'schedule/delete');
define('OG_REST_CMD_UPDATE_SCHEDULE', 'schedule/update');
+define('OG_REST_CMD_SCHEDULE', 'schedule');
define('OG_REST_PARAM_CLIENTS', 'clients');
define('OG_REST_PARAM_ADDR', 'addr');
@@ -618,6 +619,16 @@ function update_schedule($schedule_id, $task_id, $name, $years, $months, $days,
return common_request(OG_REST_CMD_UPDATE_SCHEDULE, POST, $data);
}
+function get_schedule($task_id = null) {
+ if (isset($task_id))
+ $data = array(OG_REST_PARAM_TASK => strval($task_id));
+ else
+ $data = null;
+
+ $result = common_request(OG_REST_CMD_SCHEDULE, POST, $data);
+ return $result;
+}
+
/*
* @function multiRequest.
* @param URLs array (may include header and POST data), cURL options array.