Proyectos de Subversion Moodle

Rev

| 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
namespace qbank_customfields\output;
18
 
19
/**
20
 * Class renderer.
21
 *
22
 * @package    qbank_customfields
23
 * @copyright  2021 Catalyst IT Australia Pty Ltd
24
 * @author     Matt Porritt <mattp@catalyst-ca.net>
25
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26
 */
27
class renderer extends \plugin_renderer_base {
28
 
29
    /**
30
     * Render custom field data for table display.
31
     *
32
     * @param object $fielddata The field data to display.
33
     * @return string The rendered HTML.
34
     */
35
    public function render_for_table(object $fielddata): string {
36
        $context = $fielddata->export_for_template($this);
37
        return $this->render_from_template('qbank_customfields/table_display', $context);
38
    }
39
 
40
    /**
41
     * Render custom filed data for table display.
42
     *
43
     * @param array $catfielddata The category and field data.
44
     * @return string The rendered HTML.
45
     */
46
    public function render_for_preview(array $catfielddata): string {
47
        $context = ['categories' => []];
48
 
49
        foreach ($catfielddata as $key => $value) {
50
            $context['categories'][] = [
51
                    'catname' => $key,
52
                    'fields' => $value
53
            ];
54
 
55
        }
56
 
57
        return $this->render_from_template('qbank_customfields/preview_display', $context);
58
    }
59
}