SATS/lib/api/source/fetch.php

27 lines
452 B
PHP
Raw Normal View History

<?php
require_once __DIR__.'/../../include/php/const';
function api_fetch(){
/* [1] Fetch & generate useful data from features
=========================================================*/
/* (1) Default data : access */
$data = [
2017-01-28 10:45:09 +00:00
'access' => file_get_contents(DATA_DIR.'/access.dat'),
'feature' => []
];
2017-01-28 10:45:09 +00:00
/* (2) Fetch for each feature which generates data */
return json_encode(['a'=>1]);
}
echo api_fetch();
?>