forked from Kylegoslin/moodle-block_cmanager
-
Notifications
You must be signed in to change notification settings - Fork 6
/
lib.php
executable file
·83 lines (66 loc) · 2.91 KB
/
lib.php
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
82
83
<?php
// ---------------------------------------------------------
// block_cmanager 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.
//
// block_cmanager 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/>.
//
// COURSE REQUEST MANAGER BLOCK FOR MOODLE
// by Kyle Goslin & Daniel McSweeney
// Copyright 2012-2018 - Institute of Technology Blanchardstown.
// ---------------------------------------------------------
/**
* COURSE REQUEST MANAGER
*
* @package block_cmanager
* @copyright 2018 Kyle Goslin, Daniel McSweeney
* @copyright 2021-2022 Michael Milette (TNG Consulting Inc.), Daniel Keaman
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
/**
* Return HTML displaying the names of lecturers linked to email addresses.
*
*/
function block_cmanager_get_lecturers($courseid){
global $DB, $CFG;
if (! $course = $DB->get_record("course", array("id"=>$courseid))) {
echo get_string('lib_error_invalid_c', 'block_cmanager');
die;
}
$contextid = $DB->get_field('context', 'id', array ('instanceid'=>$courseid, 'contextlevel'=>50), $strictness=IGNORE_MULTIPLE);
$userids = $DB->get_records('role_assignments',array('roleid' => '3' , 'contextid' => $contextid));
$lecturerhtml = '';
foreach ($userids as $singleuser) {
$user = $DB->get_record('user', array('id'=>$singleuser->userid), $fields='*', $strictness=IGNORE_MULTIPLE);
$lecturerhtml .= '<i class="fa fa-envelope-o" aria-hidden="true"></i> <a href="mailto:' . $user->email . '">' . $user->firstname . ' ' . $user->lastname . '</a><br>' ;
}
return $lecturerhtml;
}
/**
* Get a collection of teacher ids (role 3)
*
* for a specific course, separated by spaces.
*/
function block_cmanager_get_lecturer_ids_space_sep($courseid) {
global $DB, $CFG;
if (! $course = $DB->get_record("course", array("id"=>$courseid))) {
echo get_string('lib_error_invalid_c', 'block_cmanager');
die;
}
$contextid = $DB->get_field('context', 'id', array ('instanceid'=>$courseid, 'contextlevel'=>50), $strictness=IGNORE_MULTIPLE);
$userids = $DB->get_records('role_assignments',array('roleid' => '3' , 'contextid' => $contextid));
$lecturerhtml = '';
foreach ($userids as $singleuser) {
$user_record = $DB->get_record('user', array('id'=>$singleuser->userid), $fields='*', $strictness=IGNORE_MULTIPLE);
$lecturerhtml .= $user_record->id . ' ' ;
}
return $lecturerhtml;
}