-
Jan Maximilian Michal authoredJan Maximilian Michal authored
order.class.php 617 B
<?php
class autoILIASscript{
function autoILIASscript(){
$this->qType = "ORDER";
$this->qTitle = "Anordnungs Frage";
$this->qAuthor = "Vorname Name";
$this->qNumber = 100;
$this->qPoints = 10;
}
function exe(){
// <span style=\"font-size: x-small;\"><b>Hinweis: </b>GgF. müssen die Terme in der richtigen Reihenfolge durchnummeriert werden.</span>
$question = "Fragentext...";
$answer = array("A", "B", "C", "D");
$ml = "Musterlösung...";
return array("q" => $question, "a" => $answer, "m" => $ml);
}
}
?>