Merge branch 'lesson-rendering' of git://github.com/mudrd8mz/moodle
This commit is contained in:
@@ -252,7 +252,9 @@ class lesson_display_answer_form_essay extends moodleform {
|
||||
$mform = $this->_form;
|
||||
$contents = $this->_customdata['contents'];
|
||||
|
||||
$mform->addElement('header', 'pageheader', $OUTPUT->box($contents, 'contents'));
|
||||
$mform->addElement('header', 'pageheader');
|
||||
|
||||
$mform->addElement('html', $OUTPUT->container($contents, 'contents'));
|
||||
|
||||
$options = new stdClass;
|
||||
$options->para = false;
|
||||
@@ -270,4 +272,4 @@ class lesson_display_answer_form_essay extends moodleform {
|
||||
$this->add_action_buttons(null, get_string("pleaseenteryouranswerinthebox", "lesson"));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -483,7 +483,9 @@ class lesson_display_answer_form_matching extends moodleform {
|
||||
$lessonid = $this->_customdata['lessonid'];
|
||||
$contents = $this->_customdata['contents'];
|
||||
|
||||
$mform->addElement('header', 'pageheader', $OUTPUT->box($contents, 'contents'));
|
||||
$mform->addElement('header', 'pageheader');
|
||||
|
||||
$mform->addElement('html', $OUTPUT->container($contents, 'contents'));
|
||||
|
||||
$options = new stdClass;
|
||||
$options->para = false;
|
||||
@@ -514,4 +516,4 @@ class lesson_display_answer_form_matching extends moodleform {
|
||||
$this->add_action_buttons(null, get_string("pleasematchtheabovepairs", "lesson"));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -485,7 +485,10 @@ class lesson_display_answer_form_multichoice_singleanswer extends moodleform {
|
||||
$attempt = new stdClass();
|
||||
$attempt->answerid = null;
|
||||
}
|
||||
$mform->addElement('header', 'pageheader', $OUTPUT->box($contents, 'contents'));
|
||||
|
||||
$mform->addElement('header', 'pageheader');
|
||||
|
||||
$mform->addElement('html', $OUTPUT->container($contents, 'contents'));
|
||||
|
||||
$options = new stdClass;
|
||||
$options->para = false;
|
||||
@@ -524,7 +527,9 @@ class lesson_display_answer_form_multichoice_multianswer extends moodleform {
|
||||
$lessonid = $this->_customdata['lessonid'];
|
||||
$contents = $this->_customdata['contents'];
|
||||
|
||||
$mform->addElement('header', 'pageheader', $OUTPUT->box($contents, 'contents'));
|
||||
$mform->addElement('header', 'pageheader');
|
||||
|
||||
$mform->addElement('html', $OUTPUT->container($contents, 'contents'));
|
||||
|
||||
$options = new stdClass;
|
||||
$options->para = false;
|
||||
|
||||
@@ -264,7 +264,9 @@ class lesson_display_answer_form_numerical extends moodleform {
|
||||
$mform = $this->_form;
|
||||
$contents = $this->_customdata['contents'];
|
||||
|
||||
$mform->addElement('header', 'pageheader', $OUTPUT->box($contents, 'contents'));
|
||||
$mform->addElement('header', 'pageheader');
|
||||
|
||||
$mform->addElement('html', $OUTPUT->container($contents, 'contents'));
|
||||
|
||||
$options = new stdClass;
|
||||
$options->para = false;
|
||||
@@ -282,4 +284,4 @@ class lesson_display_answer_form_numerical extends moodleform {
|
||||
$this->add_action_buttons(null, get_string("pleaseenteryouranswerinthebox", "lesson"));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -331,7 +331,9 @@ class lesson_display_answer_form_shortanswer extends moodleform {
|
||||
$mform = $this->_form;
|
||||
$contents = $this->_customdata['contents'];
|
||||
|
||||
$mform->addElement('header', 'pageheader', $OUTPUT->box($contents, 'contents'));
|
||||
$mform->addElement('header', 'pageheader');
|
||||
|
||||
$mform->addElement('html', $OUTPUT->container($contents, 'contents'));
|
||||
|
||||
$options = new stdClass;
|
||||
$options->para = false;
|
||||
|
||||
@@ -299,7 +299,9 @@ class lesson_display_answer_form_truefalse extends moodleform {
|
||||
$attempt->answerid = null;
|
||||
}
|
||||
|
||||
$mform->addElement('header', 'pageheader', $OUTPUT->box($contents, 'contents'));
|
||||
$mform->addElement('header', 'pageheader');
|
||||
|
||||
$mform->addElement('html', $OUTPUT->container($contents, 'contents'));
|
||||
|
||||
$options = new stdClass();
|
||||
$options->para = false;
|
||||
@@ -326,4 +328,4 @@ class lesson_display_answer_form_truefalse extends moodleform {
|
||||
$this->add_action_buttons(null, get_string("pleasecheckoneanswer", "lesson"));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -283,7 +283,7 @@ class mod_lesson_renderer extends plugin_renderer_base {
|
||||
|
||||
$cell = new html_table_cell();
|
||||
$cell->colspan = 2;
|
||||
$cell->style = 'text-align:center';
|
||||
$cell->style = 'text-align:left';
|
||||
$cell->text = $page->contents;
|
||||
$pagetable->data[] = new html_table_row(array($cell));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user