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
 * Class containing data for starred courses block.
19
 *
20
 * @package     block_starredcourses
21
 * @copyright   2018 Simey Lameze <simey@moodle.com>
22
 * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
namespace block_starredcourses\output;
25
defined('MOODLE_INTERNAL') || die();
26
 
27
use renderable;
28
use renderer_base;
29
use templatable;
30
use core_course\external\course_summary_exporter;
31
 
32
require_once($CFG->dirroot . '/course/lib.php');
33
require_once($CFG->libdir . '/completionlib.php');
34
 
35
/**
36
 * Class containing data for starred courses block.
37
 *
38
 * @copyright 2018 Simey Lameze <simey@moodle.com>
39
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
40
 */
41
class main implements renderable, templatable {
42
 
43
    /**
44
     * Export this data so it can be used as the context for a mustache template.
45
     *
46
     * @param \renderer_base $output
47
     * @return array
48
     */
49
    public function export_for_template(renderer_base $output) {
50
        global $USER;
51
 
52
        $nocoursesurl = $output->image_url('courses', 'block_starredcourses')->out();
53
        $config = get_config('block_starredcourses');
54
 
55
        return [
56
            'userid' => $USER->id,
57
            'nocoursesimg' => $nocoursesurl,
58
            'displaycategories' => !empty($config->displaycategories)
59
        ];
60
    }
61
}