Пример #1
0
/**
 * export start information on round for timing software
 *
 */
function AA_timing_setStartInfo($round, $silent = false)
{
    $timing = AA_timing_getTiming();
    if ($timing == "omega") {
        $omega = new omega();
        $omega->set_allFiles();
    } elseif ($timing == "alge") {
        $alge = new alge();
        $alge->export_round($round);
    } else {
        if (!$silent) {
            AA_printErrorMsg($GLOBALS['strErrTimingNotConfigured']);
        }
    }
}