Skip to content

Commit

Permalink
Merge branch 'MDL-34570-master' of git://github.com/FMCorz/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Oct 2, 2012
2 parents f14ecbf + b825e6c commit ed27ce0
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 42 deletions.
21 changes: 14 additions & 7 deletions question/behaviour/rendererbase.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,24 +86,30 @@ public function manual_comment_fields(question_attempt $qa, question_display_opt

$commenteditor = html_writer::tag('div', html_writer::tag('textarea', s($commenttext),
array('id' => $id, 'name' => $inputname, 'rows' => 10, 'cols' => 60)));
$commenteditor .= html_writer::end_tag('div');

$commenteditor .= html_writer::start_tag('div');
if (count($formats == 1)) {
$editorformat = '';
if (count($formats) == 1) {
reset($formats);
$commenteditor .= html_writer::empty_tag('input', array('type' => 'hidden',
$editorformat .= html_writer::empty_tag('input', array('type' => 'hidden',
'name' => $inputname . 'format', 'value' => key($formats)));

} else {
$commenteditor .= html_writer::select(
$formats, $inputname . 'format', $commentformat, '');
$editorformat = html_writer::start_tag('div', array('class' => 'fitem'));
$editorformat .= html_writer::start_tag('div', array('class' => 'fitemtitle'));
$editorformat .= html_writer::tag('label', get_string('format'), array('for'=>'menu'.$inputname.'format'));
$editorformat .= html_writer::end_tag('div');
$editorformat .= html_writer::start_tag('div', array('class' => 'felement fhtmleditor'));
$editorformat .= html_writer::select($formats, $inputname.'format', $commentformat, '');
$editorformat .= html_writer::end_tag('div');
$editorformat .= html_writer::end_tag('div');
}
$commenteditor .= html_writer::end_tag('div');

$comment = html_writer::tag('div', html_writer::tag('div',
html_writer::tag('label', get_string('comment', 'question'),
array('for' => $id)), array('class' => 'fitemtitle')) .
html_writer::tag('div', $commenteditor, array('class' => 'felement fhtmleditor')),
array('class' => 'fitem'));
$comment .= $editorformat;

$mark = '';
if ($qa->get_max_mark()) {
Expand All @@ -117,6 +123,7 @@ public function manual_comment_fields(question_attempt $qa, question_display_opt
'type' => 'text',
'size' => $fieldsize,
'name' => $markfield,
'id'=> $markfield
);
if (!is_null($currentmark)) {
$attributes['value'] = $qa->format_fraction_as_mark(
Expand Down
48 changes: 29 additions & 19 deletions question/format/xhtml/format.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,18 +93,24 @@ protected function writequestion($question) {
}
$expout .= "</ul>\n";
break;
case 'shortanswer':
$expout .= "<ul class=\"shortanswer\">\n";
$expout .= " <li><input name=\"quest_$id\" type=\"text\" /></li>\n";
$expout .= "</ul>\n";
case SHORTANSWER:
$expout .= html_writer::start_tag('ul', array('class' => 'shortanswer'));
$expout .= html_writer::start_tag('li');
$expout .= html_writer::label(get_string('answer'), 'quest_'.$id, false, array('class' => 'accesshide'));
$expout .= html_writer::empty_tag('input', array('id' => "quest_$id", 'name' => "quest_$id", 'type' => 'text'));
$expout .= html_writer::end_tag('li');
$expout .= html_writer::end_tag('ul');
break;
case 'numerical':
$expout .= "<ul class=\"numerical\">\n";
$expout .= " <li><input name=\"quest_$id\" type=\"text\" /></li>\n";
$expout .= "</ul>\n";
case NUMERICAL:
$expout .= html_writer::start_tag('ul', array('class' => 'numerical'));
$expout .= html_writer::start_tag('li');
$expout .= html_writer::label(get_string('answer'), 'quest_'.$id, false, array('class' => 'accesshide'));
$expout .= html_writer::empty_tag('input', array('id' => "quest_$id", 'name' => "quest_$id", 'type' => 'text'));
$expout .= html_writer::end_tag('li');
$expout .= html_writer::end_tag('ul');
break;
case 'match':
$expout .= "<ul class=\"match\">\n";
case MATCH:
$expout .= html_writer::start_tag('ul', array('class' => 'match'));

// build answer list
$ans_list = array();
Expand All @@ -113,20 +119,24 @@ protected function writequestion($question) {
}
shuffle( $ans_list ); // random display order

// build drop down for answers
$dropdown = "<select name=\"quest_$id\">\n";
// Build select options.
$selectoptions = array();
foreach($ans_list as $ans) {
$dropdown .= "<option value=\"" . s($ans) . "\">" . s($ans) . "</option>\n";
$selectoptions[s($ans)] = s($ans);
}
$dropdown .= "</select>\n";

// finally display
// display
$option = 0;
foreach($question->options->subquestions as $subquestion) {
$quest_text = $this->repchar( $subquestion->questiontext );
$expout .= " <li>$quest_text</li>\n";
$expout .= $dropdown;
// build drop down for answers
$quest_text = $this->repchar( $subquestion->questiontext );
$dropdown = html_writer::label(get_string('answer', 'qtype_match', $option+1), 'quest_'.$id.'_'.$option, false, array('class' => 'accesshide'));
$dropdown .= html_writer::select($selectoptions, "quest_{$id}_{$option}", '', false, array('id' => "quest_{$id}_{$option}"));
$expout .= html_writer::tag('li', $quest_text);;
$expout .= $dropdown;
$option++;
}
$expout .= "</ul>\n";
$expout .= html_writer::end_tag('ul');
break;
case 'description':
break;
Expand Down
2 changes: 2 additions & 0 deletions question/type/calculated/lang/en/qtype_calculated.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
$string['decimals'] = 'with {$a}';
$string['deleteitem'] = 'Delete item';
$string['deletelastitem'] = 'Delete last item';
$string['distributionoption'] = 'Select distribution option';
$string['editdatasets'] = 'Edit the wildcards datasets';
$string['editdatasets_help'] = 'Wildcard values may be created by entering a number in each wild card field then clicking the add button. To automatically generate 10 or more values, select the number of values required before clicking the add button. A uniform distribution means any value between the limits is equally likely to be generated; a loguniform distribution means that values towards the lower limit are more likely.';
$string['editdatasets_link'] = 'question/type/calculated';
Expand Down Expand Up @@ -79,6 +80,7 @@
$string['keptlocal2'] = 'a file from the same question private set of files as before';
$string['keptlocal3'] = 'a link from the same question private set of links as before';
$string['lastitem(s)'] = 'last items(s)';
$string['lengthoption'] = 'Select length option';
$string['loguniform'] = 'Loguniform';
$string['loguniformbit'] = 'digits, from a loguniform distribution';
$string['makecopynextpage'] = 'Next page (new question)';
Expand Down
6 changes: 4 additions & 2 deletions question/type/calculated/questiontype.php
Original file line number Diff line number Diff line change
Expand Up @@ -751,11 +751,13 @@ public function custom_generator_tools($datasetdef) {
? 'decimals'
: 'significantfigures'), 'qtype_calculated', $i);
}
$menu1 = html_writer::select($lengthoptions, 'calclength[]', $regs[4], null);
$menu1 = html_writer::label(get_string('lengthoption', 'qtype_calculated'), 'menucalclength', false, array('class' => 'accesshide'));
$menu1 .= html_writer::select($lengthoptions, 'calclength[]', $regs[4], null);

$options = array('uniform' => get_string('uniformbit', 'qtype_calculated'),
'loguniform' => get_string('loguniformbit', 'qtype_calculated'));
$menu2 = html_writer::select($options, 'calcdistribution[]', $regs[1], null);
$menu2 = html_writer::label(get_string('distributionoption', 'qtype_calculated'), 'menucalcdistribution', false, array('class' => 'accesshide'));
$menu2 .= html_writer::select($options, 'calcdistribution[]', $regs[1], null);
return '<input type="submit" onclick="'
. "getElementById('addform').regenerateddefid.value='$defid'; return true;"
.'" value="'. get_string('generatevalue', 'qtype_calculated') . '"/><br/>'
Expand Down
4 changes: 3 additions & 1 deletion question/type/essay/renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,14 @@ public function response_area_input($name, $qa, $step, $lines, $context) {
array('id' => $id, 'name' => $inputname, 'rows' => $lines, 'cols' => 60)));

$output .= html_writer::start_tag('div');
if (count($formats == 1)) {
if (count($formats) == 1) {
reset($formats);
$output .= html_writer::empty_tag('input', array('type' => 'hidden',
'name' => $inputname . 'format', 'value' => key($formats)));

} else {
$output .= html_writer::label(get_string('format'), 'menu' . $inputname . 'format', false);
$output .= ' ';
$output .= html_writer::select($formats, $inputname . 'format', $responseformat, '');
}
$output .= html_writer::end_tag('div');
Expand Down
1 change: 1 addition & 0 deletions question/type/match/lang/en/qtype_match.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
*/

$string['addmoreqblanks'] = '{no} More Sets of Blanks';
$string['answer'] = 'Answer {$a}';
$string['availablechoices'] = 'Available choices';
$string['correctansweris'] = 'The correct answer is: {$a}';
$string['filloutthreeqsandtwoas'] = 'You must provide at least two questions and three answers. You can provide extra wrong answers by giving an answer with a blank question. Entries where both the question and the answer are blank will be ignored.';
Expand Down
3 changes: 3 additions & 0 deletions question/type/match/renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public function formulation_and_controls(question_attempt $qa,
$result .= html_writer::start_tag('tbody');

$parity = 0;
$i = 1;
foreach ($stemorder as $key => $stemid) {

$result .= html_writer::start_tag('tr', array('class' => 'r' . $parity));
Expand Down Expand Up @@ -80,12 +81,14 @@ public function formulation_and_controls(question_attempt $qa,
}

$result .= html_writer::tag('td',
html_writer::label(get_string('answer', 'qtype_match', $i), 'menu' . $qa->get_qt_field_name('sub' . $key), false, array('class' => 'accesshide')) .
html_writer::select($choices, $qa->get_qt_field_name('sub' . $key), $selected,
array('0' => 'choose'), array('disabled' => $options->readonly)) .
' ' . $feedbackimage, array('class' => $classes));

$result .= html_writer::end_tag('tr');
$parity = 1 - $parity;
$i++;
}
$result .= html_writer::end_tag('tbody');
$result .= html_writer::end_tag('table');
Expand Down
9 changes: 4 additions & 5 deletions question/type/multianswer/renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,11 @@ public function subquestion(question_attempt $qa, question_display_options $opti
s($correctanswer->answer), $options);

$output = '';
$output .= html_writer::start_tag('label', array('class' => 'subq'));
$output .= html_writer::tag('label', get_string('answer'),
array('class' => 'subq accesshide', 'for' => $inputattributes['id']));
$output .= html_writer::empty_tag('input', $inputattributes);
$output .= $feedbackimg;
$output .= $feedbackpopup;
$output .= html_writer::end_tag('label');

return $output;
}
Expand Down Expand Up @@ -279,7 +279,6 @@ public function subquestion(question_attempt $qa, question_display_options $opti
$inputattributes['class'] = $this->feedback_class($matchinganswer->fraction);
$feedbackimg = $this->feedback_image($matchinganswer->fraction);
}

$select = html_writer::select($choices, $qa->get_qt_field_name($fieldname),
$response, array('' => ''), $inputattributes);

Expand All @@ -296,11 +295,11 @@ public function subquestion(question_attempt $qa, question_display_options $opti
$qa, 'question', 'answer', $rightanswer->id), $options);

$output = '';
$output .= html_writer::start_tag('label', array('class' => 'subq'));
$output .= html_writer::tag('label', get_string('answer'),
array('class' => 'subq accesshide', 'for' => $inputattributes['id']));
$output .= $select;
$output .= $feedbackimg;
$output .= $feedbackpopup;
$output .= html_writer::end_tag('label');

return $output;
}
Expand Down
1 change: 1 addition & 0 deletions question/type/numerical/lang/en/qtype_numerical.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
$string['acceptederror'] = 'Accepted error';
$string['addmoreanswerblanks'] = 'Blanks for {no} More Answers';
$string['addmoreunitblanks'] = 'Blanks for {no} More Units';
$string['answercolon'] = 'Answer:';
$string['answermustbenumberorstar'] = 'The answer must be a number, for example -1.234 or 3e8, or \'*\'.';
$string['answerno'] = 'Answer {$a}';
$string['decfractionofquestiongrade'] = 'as a fraction (0-1) of the question grade';
Expand Down
13 changes: 9 additions & 4 deletions question/type/numerical/renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ public function formulation_and_controls(question_attempt $qa,
array('class' => 'unitchoices'));

} else if ($question->unitdisplay == qtype_numerical::UNITSELECT) {
$unitchoice = html_writer::select($question->ap->get_unit_options(),
$unitchoice = html_writer::label(get_string('selectunit', 'qtype_numerical'),
'menu' . $qa->get_qt_field_name('unit'), false, array('class' => 'accesshide'));
$unitchoice .= html_writer::select($question->ap->get_unit_options(),
$qa->get_qt_field_name('unit'), $selectedunit, array(''=>'choosedots'),
array('disabled' => $options->readonly));
}
Expand All @@ -111,16 +113,19 @@ public function formulation_and_controls(question_attempt $qa,
}

if ($placeholder) {
$questiontext = substr_replace($questiontext, $input,
$inputinplace = html_writer::tag('label', get_string('answer'),
array('for' => $inputattributes['id'], 'class' => 'accesshide'));
$inputinplace .= $input;
$questiontext = substr_replace($questiontext, $inputinplace,
strpos($questiontext, $placeholder), strlen($placeholder));
}

$result = html_writer::tag('div', $questiontext, array('class' => 'qtext'));

if (!$placeholder) {
$result .= html_writer::start_tag('div', array('class' => 'ablock'));
$result .= get_string('answer', 'qtype_shortanswer',
html_writer::tag('div', $input, array('class' => 'answer')));
$result .= html_writer::tag('label', get_string('answercolon', 'qtype_numerical'), array('for' => $inputattributes['id']));
$result .= html_writer::tag('span', $input, array('class' => 'answer'));
$result .= html_writer::end_tag('div');
}

Expand Down
11 changes: 7 additions & 4 deletions question/type/shortanswer/renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,20 +71,23 @@ public function formulation_and_controls(question_attempt $qa,
$placeholder = $matches[0];
$inputattributes['size'] = round(strlen($placeholder) * 1.1);
}

$input = html_writer::empty_tag('input', $inputattributes) . $feedbackimg;

if ($placeholder) {
$questiontext = substr_replace($questiontext, $input,
$inputinplace = html_writer::tag('label', get_string('answer'),
array('for' => $inputattributes['id'], 'class' => 'accesshide'));
$inputinplace .= $input;
$questiontext = substr_replace($questiontext, $inputinplace,
strpos($questiontext, $placeholder), strlen($placeholder));
}

$result = html_writer::tag('div', $questiontext, array('class' => 'qtext'));

if (!$placeholder) {
$result .= html_writer::start_tag('div', array('class' => 'ablock'));
$result .= get_string('answer', 'qtype_shortanswer',
html_writer::tag('div', $input, array('class' => 'answer')));
$result .= html_writer::tag('label', get_string('answer', 'qtype_shortanswer',
html_writer::tag('span', $input, array('class' => 'answer'))),
array('for' => $inputattributes['id']));
$result .= html_writer::end_tag('div');
}

Expand Down

0 comments on commit ed27ce0

Please sign in to comment.