-
Notifications
You must be signed in to change notification settings - Fork 4
/
lib.php
115 lines (105 loc) · 4.61 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?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/>.
/**
* AspirEDU Integration
*
* @package local_aspiredu
* @copyright 2024 AspirEDU
* @author AspirEDU
* @author Andrew Hancox <[email protected]>
* @author Open Source Learning <[email protected]>
* @link https://opensourcelearning.co.uk
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use local_aspiredu\local\lib;
/**
* Display the AspirEdu settings in the course settings block
*
* @param settings_navigation $nav The settings navigatin object
* @param context $context Course context
*/
function local_aspiredu_extend_settings_navigation(settings_navigation $nav, context $context) {
global $COURSE;
$dropoutdetectivelinks = get_config('local_aspiredu', 'dropoutdetectivelinks');
$instructorinsightlinks = get_config('local_aspiredu', 'instructorinsightlinks');
$reportsnode = null;
if (lib::links_visibility_permission($context, $dropoutdetectivelinks)) {
$displayed = false;
$canview = has_capability('local/aspiredu:viewdropoutdetective', $context);
$branch = ($nav->get('courseadmin')) ? $nav->get('courseadmin') : $nav->get('frontpage');
if ($branch && $canview) {
$subbranch = ($branch->get('coursereports')) ? $branch->get('coursereports') : $branch->get('frontpagereports');
if ($subbranch) {
$url = new moodle_url('/local/aspiredu/aspiredu.php', ['id' => $COURSE->id, 'product' => 'dd']);
$subbranch->add(
get_string('dropoutdetective', 'local_aspiredu'),
$url,
$nav::TYPE_CONTAINER,
null,
'aspiredudd' . $context->instanceid,
new pix_icon('i/stats', '')
);
$displayed = true;
}
}
if ($canview && !$displayed) {
$reportsnode = $nav->add(get_string('reports'), null, $nav::NODETYPE_BRANCH, null, 'aspiredureports');
$url = new moodle_url('/local/aspiredu/aspiredu.php', ['id' => $COURSE->id, 'product' => 'dd']);
$reportsnode->add(
get_string('dropoutdetective', 'local_aspiredu'),
$url,
$nav::TYPE_CONTAINER,
null,
'aspiredudd' . $context->instanceid,
new pix_icon('i/stats', '')
);
}
}
if (lib::links_visibility_permission($context, $instructorinsightlinks)) {
$displayed = false;
$canview = has_capability('local/aspiredu:viewinstructorinsight', $context);
$branch = ($nav->get('courseadmin')) ? $nav->get('courseadmin') : $nav->get('frontpage');
if ($branch && $canview) {
$subbranch = ($branch->get('coursereports')) ? $branch->get('coursereports') : $branch->get('frontpagereports');
if ($subbranch) {
$url = new moodle_url('/local/aspiredu/aspiredu.php', ['id' => $COURSE->id, 'product' => 'ii']);
$subbranch->add(
get_string('instructorinsight', 'local_aspiredu'),
$url,
$nav::TYPE_CONTAINER,
null,
'aspireduii' . $context->instanceid,
new pix_icon('i/stats', '')
);
$displayed = true;
}
}
if ($canview && !$displayed) {
if (!$reportsnode) {
$reportsnode = $nav->add(get_string('reports'), null, $nav::NODETYPE_BRANCH, null, 'aspiredureports');
}
$url = new moodle_url('/local/aspiredu/aspiredu.php', ['id' => $COURSE->id, 'product' => 'ii']);
$reportsnode->add(
get_string('instructorinsight', 'local_aspiredu'),
$url,
$nav::TYPE_CONTAINER,
null,
'aspireduii' . $context->instanceid,
new pix_icon('i/stats', '')
);
}
}
}