Skip to content

Commit

Permalink
MDL-36243 question->questiontext and question->generalfeedback should…
Browse files Browse the repository at this point in the history
… always be strings
  • Loading branch information
Jean-Michel Vedrine authored and danpoltawski committed Dec 11, 2012
1 parent 865485f commit cf617e1
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 91 deletions.
8 changes: 0 additions & 8 deletions mod/lesson/format.php
Original file line number Diff line number Diff line change
Expand Up @@ -366,14 +366,6 @@ function importprocess($filename, $lesson, $pageid) {
$newpage->contents = $question->questiontext;
$newpage->contentsformat = isset($question->questionformat) ? $question->questionformat : FORMAT_HTML;

// Sometimes, questiontext is not a simple text, but one array
// containing both text and format, so we need to support here
// that case with the following dirty patch. MDL-35147
if (is_array($question->questiontext)) {
$newpage->contents = isset($question->questiontext['text']) ? $question->questiontext['text'] : '';
$newpage->contentsformat = isset($question->questiontext['format']) ? $question->questiontext['format'] : FORMAT_HTML;
}

// set up page links
if ($pageid) {
// the new page follows on from this page
Expand Down
17 changes: 4 additions & 13 deletions question/format.php
Original file line number Diff line number Diff line change
Expand Up @@ -390,20 +390,11 @@ public function importprocess($category) {
'maxfiles' => -1,
'maxbytes' => 0,
);
if (is_array($question->questiontext)) {
// Importing images from draftfile.
$questiontext = $question->questiontext;
$question->questiontext = $questiontext['text'];
}
if (is_array($question->generalfeedback)) {
$generalfeedback = $question->generalfeedback;
$question->generalfeedback = $generalfeedback['text'];
}

$question->id = $DB->insert_record('question', $question);

if (!empty($questiontext['itemid'])) {
$question->questiontext = file_save_draft_area_files($questiontext['itemid'],
if (isset($question->questiontextitemid)) {
$question->questiontext = file_save_draft_area_files($question->questiontextitemid,
$this->importcontext->id, 'question', 'questiontext', $question->id,
$fileoptions, $question->questiontext);
} else if (isset($question->questiontextfiles)) {
Expand All @@ -412,8 +403,8 @@ public function importprocess($category) {
$this->importcontext, 'question', 'questiontext', $question->id, $file);
}
}
if (!empty($generalfeedback['itemid'])) {
$question->generalfeedback = file_save_draft_area_files($generalfeedback['itemid'],
if (isset($question->generalfeedbackitemid)) {
$question->generalfeedback = file_save_draft_area_files($question->generalfeedbackitemid,
$this->importcontext->id, 'question', 'generalfeedback', $question->id,
$fileoptions, $question->generalfeedback);
} else if (isset($question->generalfeedbackfiles)) {
Expand Down
12 changes: 0 additions & 12 deletions question/format/blackboard_six/formatbase.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,4 @@ public function text_field($text) {
public function cleaned_text_field($text) {
return $this->text_field($this->cleaninput($text));
}

/**
* Convert the question text to plain text.
* We need to overwrite this function because questiontext is an array.
*/
protected function format_question_text($question) {
global $DB;
$formatoptions = new stdClass();
$formatoptions->noclean = true;
return html_to_text(format_text($question->questiontext['text'],
$question->questiontext['format'], $formatoptions), 0, false);
}
}
12 changes: 8 additions & 4 deletions question/format/blackboard_six/formatpool.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,16 @@ public function process_common($questiondata) {
array('#', 'BODY', 0, '#', 'TEXT', 0, '#'),
'', true, get_string('importnotext', 'qformat_blackboard_six'));

$question->questiontext = $this->cleaned_text_field($text);
$question->questiontextformat = FORMAT_HTML; // Needed because add_blank_combined_feedback uses it.
$questiontext = $this->cleaned_text_field($text);
$question->questiontext = $questiontext['text'];
$question->questiontextformat = $questiontext['format']; // Needed because add_blank_combined_feedback uses it.
if (isset($questiontext['itemid'])) {
$question->questiontextitemid = $questiontext['itemid'];
}

// Put name in question object. We must ensure it is not empty and it is less than 250 chars.
$id = $this->getpath($questiondata, array('@', 'id'), '', true);
$question->name = $this->create_default_question_name($question->questiontext['text'],
$question->name = $this->create_default_question_name($question->questiontext,
get_string('defaultname', 'qformat_blackboard_six' , $id));

$question->generalfeedback = '';
Expand Down Expand Up @@ -453,7 +457,7 @@ public function process_matching($xml, &$questions) {
$subanswercount++;
}
if ($subquestioncount < 2 || $subanswercount < 3) {
$this->error(get_string('notenoughtsubans', 'qformat_blackboard_six', $question->questiontext['text']));
$this->error(get_string('notenoughtsubans', 'qformat_blackboard_six', $question->questiontext));
} else {
$questions[] = $question;
}
Expand Down
14 changes: 8 additions & 6 deletions question/format/blackboard_six/formatqti.php
Original file line number Diff line number Diff line change
Expand Up @@ -506,11 +506,13 @@ public function process_feedback($feedbackset, &$feedbacks) {
public function process_common($quest) {
$question = $this->defaultquestion();
$text = $quest->QUESTION_BLOCK->text;

$question->questiontext = $this->cleaned_text_field($text);
$question->questiontextformat = FORMAT_HTML; // Needed because add_blank_combined_feedback uses it.

$question->name = $this->create_default_question_name($question->questiontext['text'],
$questiontext = $this->cleaned_text_field($text);
$question->questiontext = $questiontext['text'];
$question->questiontextformat = $questiontext['format']; // Needed because add_blank_combined_feedback uses it.
if (isset($questiontext['itemid'])) {
$question->questiontextitemid = $questiontext['itemid'];
}
$question->name = $this->create_default_question_name($question->questiontext,
get_string('defaultname', 'qformat_blackboard_six' , $quest->id));
$question->generalfeedback = '';
$question->generalfeedbackformat = FORMAT_HTML;
Expand Down Expand Up @@ -863,7 +865,7 @@ public function process_matching($quest, &$questions) {
$subanswercount++;
}
if ($subquestioncount < 2 || $subanswercount < 3) {
$this->error(get_string('notenoughtsubans', 'qformat_blackboard_six', $question->questiontext['text']));
$this->error(get_string('notenoughtsubans', 'qformat_blackboard_six', $question->questiontext));
} else {
$questions[] = $question;
}
Expand Down
30 changes: 6 additions & 24 deletions question/format/blackboard_six/tests/blackboardformatpool_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,7 @@ public function test_import_match() {
$expectedq = new stdClass();
$expectedq->qtype = 'match';
$expectedq->name = 'Classify the animals.';
$expectedq->questiontext = array(
'text' => '<i>Classify the animals.</i>',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = '<i>Classify the animals.</i>';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->correctfeedback = array('text' => '',
'format' => FORMAT_HTML);
Expand Down Expand Up @@ -98,10 +95,7 @@ public function test_import_multichoice_single() {
$expectedq->qtype = 'multichoice';
$expectedq->single = 1;
$expectedq->name = 'What\'s between orange and green in the spectrum?';
$expectedq->questiontext = array(
'text' =>'<span style="font-size:12pt">What\'s between orange and green in the spectrum?</span>',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = '<span style="font-size:12pt">What\'s between orange and green in the spectrum?</span>';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->correctfeedback = array('text' => 'You gave the right answer.',
'format' => FORMAT_HTML);
Expand Down Expand Up @@ -161,10 +155,7 @@ public function test_import_multichoice_multi() {
$expectedq->qtype = 'multichoice';
$expectedq->single = 0;
$expectedq->name = 'What\'s between orange and green in the spectrum?';
$expectedq->questiontext = array(
'text' => '<span style="font-size:12pt">What\'s between orange and green in the spectrum?</span>',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = '<span style="font-size:12pt">What\'s between orange and green in the spectrum?</span>';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->correctfeedback = array(
'text' => 'You gave the right answer.',
Expand Down Expand Up @@ -237,10 +228,7 @@ public function test_import_truefalse() {
$expectedq = new stdClass();
$expectedq->qtype = 'truefalse';
$expectedq->name = '42 is the Absolute Answer to everything.';
$expectedq->questiontext = array(
'text' => '<span style="font-size:12pt">42 is the Absolute Answer to everything.</span>',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = '<span style="font-size:12pt">42 is the Absolute Answer to everything.</span>';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->generalfeedback = '';
$expectedq->generalfeedbackformat = FORMAT_HTML;
Expand Down Expand Up @@ -270,10 +258,7 @@ public function test_import_fill_in_the_blank() {
$expectedq = new stdClass();
$expectedq->qtype = 'shortanswer';
$expectedq->name = 'Name an amphibian: __________.';
$expectedq->questiontext = array(
'text' => '<span style="font-size:12pt">Name an amphibian: __________.</span>',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = '<span style="font-size:12pt">Name an amphibian: __________.</span>';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->generalfeedback = '';
$expectedq->generalfeedbackformat = FORMAT_HTML;
Expand Down Expand Up @@ -308,10 +293,7 @@ public function test_import_essay() {
$expectedq = new stdClass();
$expectedq->qtype = 'essay';
$expectedq->name = 'How are you?';
$expectedq->questiontext = array(
'text' => 'How are you?',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = 'How are you?';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->generalfeedback = '';
$expectedq->generalfeedbackformat = FORMAT_HTML;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,7 @@ public function test_import_match() {
$expectedq = new stdClass();
$expectedq->qtype = 'match';
$expectedq->name = 'Classify the animals.';
$expectedq->questiontext = array(
'text' => 'Classify the animals.',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = 'Classify the animals.';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->correctfeedback = array('text' => '',
'format' => FORMAT_HTML, 'files' => array());
Expand Down Expand Up @@ -94,10 +91,7 @@ public function test_import_multichoice_single() {
$expectedq->qtype = 'multichoice';
$expectedq->single = 1;
$expectedq->name = 'What\'s between orange and green in the spectrum?';
$expectedq->questiontext = array(
'text' => '<span style="font-size:12pt">What\'s between orange and green in the spectrum?</span>',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = '<span style="font-size:12pt">What\'s between orange and green in the spectrum?</span>';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->correctfeedback = array('text' => '',
'format' => FORMAT_HTML, 'files' => array());
Expand Down Expand Up @@ -157,10 +151,7 @@ public function test_import_multichoice_multi() {
$expectedq->qtype = 'multichoice';
$expectedq->single = 0;
$expectedq->name = 'What\'s between orange and green in the spectrum?';
$expectedq->questiontext = array(
'text' => '<i>What\'s between orange and green in the spectrum?</i>',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = '<i>What\'s between orange and green in the spectrum?</i>';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->correctfeedback = array(
'text' => '',
Expand Down Expand Up @@ -236,10 +227,7 @@ public function test_import_truefalse() {
$expectedq = new stdClass();
$expectedq->qtype = 'truefalse';
$expectedq->name = '42 is the Absolute Answer to everything.';
$expectedq->questiontext = array(
'text' => '<span style="font-size:12pt">42 is the Absolute Answer to everything.</span>',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = '<span style="font-size:12pt">42 is the Absolute Answer to everything.</span>';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->generalfeedback = '';
$expectedq->generalfeedbackformat = FORMAT_HTML;
Expand Down Expand Up @@ -270,10 +258,7 @@ public function test_import_fill_in_the_blank() {
$expectedq = new stdClass();
$expectedq->qtype = 'shortanswer';
$expectedq->name = 'Name an amphibian: __________.';
$expectedq->questiontext = array(
'text' => '<span style="font-size:12pt">Name an amphibian: __________.</span>',
'format' => FORMAT_HTML,
);
$expectedq->questiontext = '<span style="font-size:12pt">Name an amphibian: __________.</span>';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->generalfeedback = '';
$expectedq->generalfeedbackformat = FORMAT_HTML;
Expand Down Expand Up @@ -308,10 +293,7 @@ public function test_import_essay() {
$expectedq = new stdClass();
$expectedq->qtype = 'essay';
$expectedq->name = 'How are you?';
$expectedq->questiontext = array(
'text' => 'How are you?',
'format' => FORMAT_HTML
);
$expectedq->questiontext = 'How are you?';
$expectedq->questiontextformat = FORMAT_HTML;
$expectedq->generalfeedback = '';
$expectedq->generalfeedbackformat = FORMAT_HTML;
Expand Down

0 comments on commit cf617e1

Please sign in to comment.