From 10e40a5d8efaad28c2a593bba83c7739ab81e511 Mon Sep 17 00:00:00 2001 From: Elena.Budnik <ebudnik@irap.omp.eu> Date: Fri, 1 Mar 2019 15:55:36 +0100 Subject: [PATCH] add getDataUrl REST --- src/DDSERVICES/REST/getDataUrl.php | 11 +++++++++++ 1 file changed, 11 insertions(+), 0 deletions(-) create mode 100644 src/DDSERVICES/REST/getDataUrl.php diff --git a/src/DDSERVICES/REST/getDataUrl.php b/src/DDSERVICES/REST/getDataUrl.php new file mode 100644 index 0000000..4479702 --- /dev/null +++ b/src/DDSERVICES/REST/getDataUrl.php @@ -0,0 +1,11 @@ +<?php + + require_once 'DDserverWeb.php'; + + $ddserveur_ws = new DDService(); + + $res = $ddserveur_ws->getDataUrl($_GET['dataSet'],$_GET['StartTime'],$_GET['StopTime']); + + echo json_encode($res); + +?> -- libgit2 0.21.2