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
/**
18
 * Renderer class for report_competency
19
 *
20
 * @package    report_competency
21
 * @copyright  2015 Damyon Wiese
22
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
namespace report_competency\output;
26
 
27
defined('MOODLE_INTERNAL') || die;
28
 
29
use plugin_renderer_base;
30
use renderable;
31
 
32
/**
33
 * Renderer class for competency breakdown report
34
 *
35
 * @package    report_competency
36
 * @copyright  2015 Damyon Wiese
37
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38
 */
39
class renderer extends plugin_renderer_base {
40
 
41
    /**
42
     * Defer to template.
43
     *
44
     * @param report $page
45
     * @return string html for the page
46
     */
47
    public function render_report(report $page) {
48
        $data = $page->export_for_template($this);
49
        return parent::render_from_template('report_competency/report', $data);
50
    }
51
 
52
    /**
53
     * Defer to template.
54
     *
55
     * @param user_course_navigation $nav
56
     * @return string
57
     */
58
    public function render_user_course_navigation(user_course_navigation $nav) {
59
        $data = $nav->export_for_template($this);
60
        return parent::render_from_template('report_competency/user_course_navigation', $data);
61
    }
62
 
63
    /**
64
     * Output a nofication.
65
     *
66
     * @param string $message the message to print out
67
     * @return string HTML fragment.
68
     * @see \core\output\notification
69
     */
70
    public function notify_message($message) {
71
        $n = new \core\output\notification($message, \core\output\notification::NOTIFY_INFO);
72
        return $this->render($n);
73
    }
74
 
75
    /**
76
     * Output an error notification.
77
     *
78
     * @param string $message the message to print out
79
     * @return string HTML fragment.
80
     * @see \core\output\notification
81
     */
82
    public function notify_problem($message) {
83
        $n = new \core\output\notification($message, \core\output\notification::NOTIFY_ERROR);
84
        return $this->render($n);
85
    }
86
 
87
    /**
88
     * Output a success notification.
89
     *
90
     * @param string $message the message to print out
91
     * @return string HTML fragment.
92
     * @see \core\output\notification
93
     */
94
    public function notify_success($message) {
95
        $n = new \core\output\notification($message, \core\output\notification::NOTIFY_SUCCESS);
96
        return $this->render($n);
97
    }
98
}