appel GetURL()

This commit is contained in:
jbousquie 2016-11-24 13:57:23 +01:00
parent ebea5bf811
commit 2054563c64

View File

@ -1,21 +1,9 @@
<?php <?php
require_once 'HTTP/Request2.php';
include_once('winlog_admin_conf.php'); include_once('winlog_admin_conf.php');
include_once('client_http.php');
Function bascule_salle($url) { Function bascule_salle($url) {
$salles_bloquees = array(); GetURL($url);
$r = new HTTP_Request2($url, HTTP_Request2::METHOD_GET);
try {
$response = $r->send();
if (200 == $response->getStatus()) {
$body = $response->getBody();
$reponse = json_decode($body);
}
}
catch (HTTP_Request2_Exception $ex) {
echo $$ex->getMessage();
}
return $reponse;
} }
$action = $_GET["a"]; $action = $_GET["a"];