MDL-47791 question editing: remove permission info from above the form

This information is not really meaningful for users, and takes up prime
real-estate, so we are removing it.
This commit is contained in:
Tim Hunt
2014-10-21 15:03:20 +01:00
parent b49de5d930
commit cda62a3829
2 changed files with 0 additions and 30 deletions
-23
View File
@@ -244,30 +244,7 @@ class question_type {
public function display_question_editing_page($mform, $question, $wizardnow) {
global $OUTPUT;
$heading = $this->get_heading(empty($question->id));
echo $OUTPUT->heading_with_help($heading, 'pluginname', $this->plugin_name());
$permissionstrs = array();
if (!empty($question->id)) {
if ($question->formoptions->canedit) {
$permissionstrs[] = get_string('permissionedit', 'question');
}
if ($question->formoptions->canmove) {
$permissionstrs[] = get_string('permissionmove', 'question');
}
if ($question->formoptions->cansaveasnew) {
$permissionstrs[] = get_string('permissionsaveasnew', 'question');
}
}
if (count($permissionstrs)) {
echo $OUTPUT->heading(get_string('permissionto', 'question'), 3);
$html = '<ul>';
foreach ($permissionstrs as $permissionstr) {
$html .= '<li>'.$permissionstr.'</li>';
}
$html .= '</ul>';
echo $OUTPUT->box($html, 'boxwidthnarrow boxaligncenter generalbox');
}
$mform->display();
}
-7
View File
@@ -115,13 +115,6 @@ class qtype_random extends question_type {
$this->manualqtypes = implode(',', $manualqtypes);
}
public function display_question_editing_page($mform, $question, $wizardnow) {
global $OUTPUT;
$heading = $this->get_heading(empty($question->id));
echo $OUTPUT->heading_with_help($heading, 'pluginname', $this->plugin_name());
$mform->display();
}
public function get_question_options($question) {
return true;
}