Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
/**
18
 * Helper functions and callbacks.
19
 *
20
 * @package    qbank_usage
21
 * @copyright  2021 Catalyst IT Australia Pty Ltd
22
 * @author     Safat Shahin <safatshahin@catalyst-au.net>
23
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24
 */
25
 
26
defined('MOODLE_INTERNAL') || die();
27
 
28
/**
29
 * Question usage fragment callback.
30
 *
31
 * @param array $args
32
 * @return string rendered output
33
 */
34
function qbank_usage_output_fragment_question_usage(array $args): string {
1441 ariadna 35
    global $PAGE, $CFG;
1 efrain 36
    require_once($CFG->dirroot . '/question/engine/bank.php');
37
    $displaydata = [];
38
 
39
    $question = question_bank::load_question($args['questionid']);
1441 ariadna 40
    $displaydata['question'] = question_bank::render_preview_of_question($question);
1 efrain 41
 
42
    $specificversion = clean_param($args['specificversion'] ?? false, PARAM_BOOL);
43
    $questionusagetable = new \qbank_usage\tables\question_usage_table('question_usage_table', $question, $specificversion);
44
    $questionusagetable->baseurl = new moodle_url('');
45
    if (isset($args['querystring'])) {
46
        $querystring = preg_replace('/^\?/', '', $args['querystring']);
47
        $params = [];
48
        parse_str($querystring, $params);
49
        if (isset($params['page'])) {
50
            $questionusagetable->currpage = $params['page'];
51
        }
52
    }
53
    $displaydata['tablesql'] = $questionusagetable->export_for_fragment();
54
    $selector = \core_question\output\question_version_selection::make_for_question('question_usage_version_dropdown',
55
        $args['questionid']);
56
    $qbankrenderer = $PAGE->get_renderer('core_question', 'bank');
57
    $displaydata['versionselection'] = $selector->export_for_template($qbankrenderer);
58
 
59
    return $PAGE->get_renderer('qbank_usage')->render_usage_fragment($displaydata);
60
}