makeRemoteParamInternal.php
304 Bytes
<?php
/*
* Executable to make
*/
if (!function_exists('__autoload')) {
function __autoload($class_name) {
require_once $class_name . '.php';
}
}
$AMDA_IHM = getenv('AMDA_IHM');
require_once $AMDA_IHM."/php/config.php";
$center = new THEMIS();
$center->makeAllParams();
?>