0 and $answer_weight <> 1){ /// $question->single = 0; // ok many good answers /// } return $answer_weight; } function commentparser(&$answer) { //Answer Comment parser if (strpos($answer,"#") > 0){ $hashpos = strpos($answer,"#"); $comment = addslashes(substr($answer, $hashpos+1)); $answer = substr($answer, 0, $hashpos); } else { $comment = " "; } return $comment; } function readquestion($lines) { /// Given an array of lines known to define a question in this format, this function /// converts it into a question object suitable for processing and insertion into Moodle. $question = NULL; $comment = NULL; $answer_weight_regex = "^%\-*([0-9]{1,2})\.?([0-9]*)%"; $text = implode(" ", $lines); /// QUESTION NAME parser $text = trim($text); if (substr($text, 0, 2) == "::") { $text = substr($text, 2); $namefinish = strpos($text, "::"); if ($namefinish === false) { $question->name = false; // name will be assigned after processing question text below } else { $question->name = addslashes(trim(substr($text, 0, $namefinish))); $text = substr($text, $namefinish+2); // Remove name from text } } else { $question->name = false; } /// FIND ANSWER section $answerstart = strpos($text, "{"); if ($answerstart === false) { if ($this->displayerrors) { echo "

$text

Could not find a {"; } return false; } $answerfinish = strpos($text, "}"); if ($answerfinish === false) { if ($this->displayerrors) { echo "

$text

Could not find a }"; } return false; } $answerlength = $answerfinish - $answerstart; $answertext = trim(substr($text, $answerstart + 1, $answerlength - 1)); /// SAVE QUESTION TEXT without answer, inserting "_____" as necessary if (substr($text, -1) == "}") { /// no blank line if answers follow question, outside of closing punctuation $question->questiontext = addslashes(substr_replace($text, "", $answerstart, $answerlength+1)); } else { /// inserts blank line for missing word format $question->questiontext = addslashes(substr_replace($text, "_____", $answerstart, $answerlength+1)); } /// set question name if not already set if ($question->name === false) { $question->name = $question->questiontext; } /// ANSWERS // Only Multiple-choice questions contain tilde ~ if (strstr($answertext, "~") !== FALSE) { // tilde conditional ///MULTIPLE CHOICE $answertext = str_replace("=", "~=", $answertext); $answers = explode("~", $answertext); if (isset($answers[0])) { $answers[0] = trim($answers[0]); } if (empty($answers[0])) { array_shift($answers); } $countanswers = count($answers); if ($countanswers < 2) { // MC $countanswers conditional if ($this->displayerrors) { echo "

Found tilde, but " . $countanswers . " answers in $answertext"; } return false; } else { // MC $countanswers conditional $question->qtype = MULTICHOICE; $question->single = 1; // Only one answer allowed by default foreach ($answers as $key => $answer) { $answer = trim($answer); // determine answer weight if ($answer[0] == "=") { $answer_weight = 1; $answer = substr($answer, 1); } elseif (ereg($answer_weight_regex, $answer)) { // check for properly formatted answer weight $answer_weight = $this->answerweightparser($answer); } else { //default, i.e., wrong anwer $answer_weight = 0; } $question->fraction[$key] = $answer_weight; $comment = $this->commentparser($answer); // commentparser also cleans up $answer $question->feedback[$key] = $comment; $question->answer[$key] = addslashes($answer); } // end foreach answer $question->defaultgrade = 1; $question->image = ""; // No images with this format return $question; } // end MC $countanswers conditional /// Otherwise, begin parsing other question-types } else { // tilde conditional /// TRUEFALSE Question $TF_check = $answertext; if (strpos($answertext,"#") > 0){ // strip comments to check for TrueFalse question $TF_check = trim(substr($answertext, 0, strpos($answertext,"#"))); } if (($TF_check == "T") // TrueFalse/ShortAnswer QuestionType conditional OR ($TF_check == "TRUE") OR ($TF_check == "F") OR ($TF_check == "FALSE")) { $answer = $answertext; $question->qtype = TRUEFALSE; $comment = $this->commentparser($answer); // commentparser also cleans up $answer if ($answer == "T" OR $answer == "TRUE") { $question->answer = 1; $question->feedbackfalse = $comment; //feedback if answer is wrong } else { $question->answer = 0; $question->feedbacktrue = $comment; //feedback if answer is wrong } } else { // TrueFalse/ShortAnswer QuestionType conditional /// SHORTANSWER Question $answers = explode("=", $answertext); if (isset($answers[0])) { $answers[0] = trim($answers[0]); } if (empty($answers[0])) { array_shift($answers); } if (count($answers) == 0) { /// invalid question if ($this->displayerrors) { echo "

Found equals=, but no answers in $answertext"; } return false; } else { $question->qtype = SHORTANSWER; $question->usecase = 0; // Ignore case foreach ($answers as $key => $answer) { $answer = trim($answer); // Answer Weight if (ereg($answer_weight_regex, $answer)) { // check for properly formatted answer weight $answer_weight = $this->answerweightparser($answer); } else { //default, i.e., full-credit anwer $answer_weight = 1; } $question->fraction[$key] = $answer_weight; $comment = $this->commentparser($answer); //commentparser also cleans up $answer $question->feedback[$key] = $comment; $question->answer[$key] = addslashes($answer); } // end foreach } // end ount($answers) conditional } // end TrueFalse/ShortAnswer QuestionType conditional $question->defaultgrade = 1; $question->image = ""; // No images with this format return $question; } // end tilde conditional } // end function readquestion($lines) } ?>