apiDoc.php
456 Bytes
<?php
require_once dirname(__FILE__) . '/../php/config.php';
$restFolderPath = AMDA_IHM . "php/rest";
$apidocConfigFile = $restFolderPath . "apidoc.json";
$tempConfigFile = tempnam(sys_get_temp_dir(), 'apidoc.json');
$apidocConfig = str_replace("{:REST_API_URL:}", REST_API_URL, file_get_contents($apidocConfigFile));
file_put_contents($tempConfigFile, $apidocConfig);
echo exec("apidoc -v -c $tempConfigFile -i $restFolderPath -o " . API_DOC_PATH);
?>