-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblock_open_courses.php
More file actions
83 lines (64 loc) · 2.79 KB
/
Copy pathblock_open_courses.php
File metadata and controls
83 lines (64 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Open Courses block.
*
* @package block_open_courses
* @copyright 2018 onwards Stefan Weber, FH Technikum Wien (webers@technikum-wien.at)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
include_once($CFG->dirroot . '/course/lib.php');
include_once($CFG->libdir . '/coursecatlib.php');
class block_open_courses extends block_list {
function init() {
$this->title = get_string('pluginname', 'block_open_courses');
}
function get_content() {
global $CFG, $USER, $DB, $OUTPUT;
if($this->content !== NULL) {
return $this->content;
}
$this->content = new stdClass;
$this->content->items = array();
$this->content->icons = array();
$this->content->items[]= get_string('description', 'block_open_courses');
$this->content->items[]= "<br>";
$icon = $OUTPUT->pix_icon('i/course', get_string('course'));
$sortorder = 'visible DESC,sortorder ASC';
$accesscourses = enrol_get_my_courses(NULL, $sortorder, 0, [], true); //get all courses the user can view
$mycourses = enrol_get_my_courses(NULL, $sortorder, 0, [], false); //get all courses the user is enrolled in
//skip for admins
if (has_capability('moodle/course:update', context_system::instance())) {
$this->content->items[] = get_string('adminmsg', 'block_open_courses');
}
else {
//collect courses the user can view but is not enrolled in
foreach ($accesscourses as $course) {
if(!in_array ($course, $mycourses)) {
$opencourses[] = $course;
}
}
//display courses
foreach ($opencourses as $course) {
$coursecontext = context_course::instance($course->id);
$linkcss = $course->visible ? "" : " class=\"dimmed\" ";
$this->content->items[]="<a $linkcss title=\"" . format_string($course->shortname, true, array('context' => $coursecontext)) . "\" ".
"href=\"$CFG->wwwroot/course/view.php?id=$course->id\">".$icon.format_string(get_course_display_name_for_list($course)). "</a>";
}
$this->title = get_string('pluginname', 'block_open_courses');
}
}
}