-
Jan Maximilian Michal authoredJan Maximilian Michal authored
numeric.class.php 489 B
<?php
class autoILIASscript{
function autoILIASscript(){
$this->qType = "NUMERIC";
$this->qTitle = "Numerische Frage";
$this->qAuthor = "Vorname Name";
$this->qNumber = 100;
$this->qPoints = 10;
//$this->numericFormatstring = "";
}
function exe(){
$question = "Fragentext...";
$answer = 42;
$ml = "Musterlösung...";
return array("q" => $question, "a" => $answer, "m" => $ml);
}
}
?>