GITLAB

CDPP / AMDA_IHM

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
data-activities
  • AMDA_IHM
  • php
  • rest
  • getTimeTablesList.php
  • b8194303   getPlot final Browse Code »
    Elena.Budnik
    7 years ago  
getTimeTablesList.php 327 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?php
  
/** 
*   @file getTimeTablesList.php
*   @brief  REST interface for service getTimeTablesList
*/

	require_once '../config.php';

	$amda_ws = new WebServer();

	$result = $amda_ws->getTimeTablesList($_GET);

	if ($result['success'])
	{
		echo $result['TimeTablesList'];
	}
	else 
	{
		echo $result['message'];  
	}
?>