NxTIC/test-charts/network.php

52 lines
1.2 KiB
PHP
Raw Normal View History

<?php define('__ROOT__', dirname(dirname(__FILE__)) );
require_once __ROOT__.'/manager/autoloader.php';
use \manager\ModuleRequest;
use \manager\ManagerError;
debug();
?>
2016-05-25 17:03:13 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Chart réseau</title>
<script type='text/javascript' src='/f/js/api-min/js/lib'></script> <!-- Gestion des transactions avec le serveur -->
</head>
<body style='display: flex; flex-direction: row; justify-content: space-around; flex-wrap: wrap;'>
<?php
/* [1] On récupère les données
=========================================================*/
$req = new ModuleRequest('chart/network', array('subject'=>273));
$res = $req->dispatch();
2016-05-25 17:03:13 +00:00
if( $res->error != ManagerError::Success )
var_dump( ManagerError::explicit($res->error) );
2016-05-25 17:03:13 +00:00
var_dump($res->getAll());
/* [2] Gestion spatiale
=========================================================*/
/* [3] On affiche le contenu
=========================================================*/
2016-05-25 17:03:13 +00:00
echo "<?xml version='1.0' encoding='UTF-8' standalone='no'?>";
echo "<svg version='1.1' width='1000' height='1000' style='width: 40em; height: 40em;border:1px solid black'>";
2016-05-25 17:03:13 +00:00
echo "</svg>";
?>
</body>
</html>