Skip to content

Commit

Permalink
MDL-30592 question_bank: make files in qtext work in the question list.
Browse files Browse the repository at this point in the history
  • Loading branch information
timhunt committed Dec 9, 2011
1 parent 03d0ee3 commit 766787b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 5 deletions.
27 changes: 27 additions & 0 deletions lib/questionlib.php
Expand Up @@ -1844,6 +1844,33 @@ function question_pluginfile($course, $context, $component, $filearea, $args, $f
} }
} }


/**
* Serve questiontext files in the question text when they are displayed in this report.
* @param context $context the context
* @param int $questionid the question id
* @param array $args remaining file args
* @param bool $forcedownload
*/
function core_question_questiontext_preview_pluginfile($context, $questionid, $args, $forcedownload) {
global $DB;

// Verify that contextid matches the question.
$question = $DB->get_record_sql('
SELECT q.*, qc.contextid
FROM {question} q
JOIN {question_categories} qc ON qc.id = q.category
WHERE q.id = :id AND qc.contextid = :contextid',
array('id' => $questionid, 'contextid' => $context->id), MUST_EXIST);

// Check the capability.
list($context, $course, $cm) = get_context_info_array($context->id);
require_login($course, false, $cm);

question_require_capability_on($question, 'use');

question_send_questiontext_file($questionid, $args, $forcedownload);
}

/** /**
* Create url for question export * Create url for question export
* *
Expand Down
16 changes: 11 additions & 5 deletions question/editlib.php
Expand Up @@ -791,16 +791,22 @@ protected function get_title() {
} }


protected function display_content($question, $rowclasses) { protected function display_content($question, $rowclasses) {
$text = format_text($question->questiontext, $question->questiontextformat, $text = question_rewrite_questiontext_preview_urls($question->questiontext,
$this->formatoptions, $this->qbank->get_courseid()); $question->contextid, 'question', $question->id);
$text = format_text($text, $question->questiontextformat,
$this->formatoptions);
if ($text == '') { if ($text == '') {
$text = ' '; $text = ' ';
} }
echo $text; echo $text;
} }


public function get_extra_joins() {
return array('qc' => 'JOIN {question_categories} qc ON qc.id = q.category');
}

public function get_required_fields() { public function get_required_fields() {
return array('q.questiontext', 'q.questiontextformat'); return array('q.id', 'q.questiontext', 'q.questiontextformat', 'qc.contextid');
} }
} }


Expand Down Expand Up @@ -1100,10 +1106,10 @@ protected function build_query_sql($category, $recurse, $showhidden) {
} }


/// Build the where clause. /// Build the where clause.
$tests = array('parent = 0'); $tests = array('q.parent = 0');


if (!$showhidden) { if (!$showhidden) {
$tests[] = 'hidden = 0'; $tests[] = 'q.hidden = 0';
} }


if ($recurse) { if ($recurse) {
Expand Down

0 comments on commit 766787b

Please sign in to comment.