-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlib.php
273 lines (242 loc) · 7.98 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?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/>.
/**
* Mandatory public API of leganto module.
*
* @package mod_leganto
* @copyright 2017 Lancaster University {@link http://www.lancaster.ac.uk/}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @author Tony Butler <a.butler4@lancaster.ac.uk>
*/
/** Display leganto contents on a separate page. */
define('LEGANTO_DISPLAY_PAGE', 0);
/** Display leganto contents inline in a course. */
define('LEGANTO_DISPLAY_INLINE_COLLAPSED', 1);
define('LEGANTO_DISPLAY_INLINE_EXPANDED', 2);
/**
* List of features supported in leganto module.
*
* @param string $feature FEATURE_xx constant for requested feature.
* @return mixed True if module supports feature, false if not, null if doesn't know.
*/
function leganto_supports($feature) {
switch ($feature) {
case FEATURE_MOD_ARCHETYPE:
return MOD_ARCHETYPE_RESOURCE;
case FEATURE_MOD_PURPOSE:
return MOD_PURPOSE_CONTENT;
case FEATURE_GROUPS:
return false;
case FEATURE_GROUPINGS:
return false;
case FEATURE_MOD_INTRO:
return true;
case FEATURE_COMPLETION_TRACKS_VIEWS:
return true;
case FEATURE_GRADE_HAS_GRADE:
return false;
case FEATURE_GRADE_OUTCOMES:
return false;
case FEATURE_BACKUP_MOODLE2:
return true;
case FEATURE_SHOW_DESCRIPTION:
return true;
default:
return null;
}
}
/**
* Returns all other caps used in module.
*
* @return array
*/
function leganto_get_extra_capabilities() {
return ['moodle/site:accessallgroups'];
}
/**
* This function is used by the reset_course_userdata function in moodlelib.
*
* @param object $data The data submitted from the reset course.
* @return array Status array.
*/
function leganto_reset_userdata($data) {
return [];
}
/**
* List of view style log actions.
*
* @return array
*/
function leganto_get_view_actions() {
return ['view', 'view all'];
}
/**
* List of update style log actions.
*
* @return array
*/
function leganto_get_post_actions() {
return ['update', 'add'];
}
/**
* Add leganto instance.
*
* @param object $data
* @param object $mform
* @return int New leganto instance id.
*/
function leganto_add_instance($data, $mform) {
global $DB;
$cmid = $data->coursemodule;
$leganto = new leganto(context_module::instance($cmid), null, null);
$data->timemodified = time();
$data->citations = $leganto->get_citations($data);
$data->id = $DB->insert_record('leganto', $data);
$DB->set_field('course_modules', 'instance', $data->id, ['id' => $cmid]);
return $data->id;
}
/**
* Update leganto instance.
*
* @param object $data
* @param object $mform
* @return bool True.
*/
function leganto_update_instance($data, $mform) {
global $DB;
$context = context_module::instance($data->coursemodule);
$leganto = new leganto($context, null, null);
$data->id = $data->instance;
$data->timemodified = time();
$data->citations = $leganto->get_citations($data);
$DB->update_record('leganto', $data);
return true;
}
/**
* Delete leganto instance.
*
* @param int $id
* @return bool True.
*/
function leganto_delete_instance($id) {
global $DB;
if (!$leganto = $DB->get_record('leganto', ['id' => $id])) {
return false;
}
// Note: all context files are deleted automatically.
$DB->delete_records('leganto', ['id' => $leganto->id]);
return true;
}
/**
* Return a list of page types.
*
* @param string $pagetype Current page type.
* @param stdClass $parentcontext Block's parent context.
* @param stdClass $currentcontext Current context of block.
* @return array Page types.
*/
function leganto_page_type_list($pagetype, $parentcontext, $currentcontext) {
$modulepagetype = ['mod-leganto-*' => get_string('page-mod-leganto-x', 'leganto')];
return $modulepagetype;
}
/**
* Given a coursemodule object, this function returns the extra
* information needed to print this activity in various places.
*
* If leganto needs to be displayed inline we store additional information
* in customdata, so functions {@see leganto_cm_info_dynamic()} and
* {@see leganto_cm_info_view()} do not need to do DB queries.
*
* @param cm_info $cm
* @return cached_cm_info Cached course module info.
*/
function leganto_get_coursemodule_info($cm) {
global $DB;
if (!($leganto = $DB->get_record('leganto', ['id' => $cm->instance], 'id, name, intro, introformat, display, citations'))) {
return null;
}
$cminfo = new cached_cm_info();
$cminfo->name = $leganto->name;
if ($leganto->display != LEGANTO_DISPLAY_PAGE) {
// Prepare leganto object to store in customdata.
$fdata = new stdClass();
if ($cm->showdescription && strlen(trim($leganto->intro))) {
$fdata->intro = $leganto->intro;
if ($leganto->introformat != FORMAT_MOODLE) {
$fdata->introformat = $leganto->introformat;
}
}
$fdata->display = $leganto->display;
$fdata->citations = $leganto->citations;
$cminfo->customdata = $fdata;
} else {
if ($cm->showdescription) {
// Convert intro to html. Do not filter cached version, filters run at display time.
$cminfo->content = format_module_intro('leganto', $leganto, $cm->id, false);
}
}
return $cminfo;
}
/**
* Sets dynamic information about a course module.
*
* This function is called from cm_info when displaying the module.
* mod_leganto can be displayed inline on course page and therefore have no course link.
*
* @param cm_info $cm
*/
function leganto_cm_info_dynamic(cm_info $cm) {
if ($cm->get_custom_data()) {
// The field 'customdata' is not empty IF AND ONLY IF we display contents inline.
$cm->set_on_click('return false;');
// Display a visual cue to users that clicking the link toggles visibility.
$showhidearrow = html_writer::div('', 'showhidearrow', ['id' => 'showhide-' . $cm->id]);
$linkattributes = [
'onclick' => 'return false;',
'title' => get_string('showhide', 'leganto'),
];
$showhidelink = html_writer::link($cm->url, $showhidearrow, $linkattributes);
$cm->set_after_link($showhidelink);
}
}
/**
* Overwrites the content in the course-module object with the leganto content
* if leganto.display != LEGANTO_DISPLAY_PAGE.
*
* @param cm_info $cm
*/
function leganto_cm_info_view(cm_info $cm) {
global $PAGE;
if ($cm->uservisible && $cm->customdata && has_capability('mod/leganto:view', $cm->context)) {
// Restore leganto object from customdata.
// Note the field 'customdata' is not empty IF AND ONLY IF we display contents inline.
// Otherwise the content is default.
$leganto = $cm->customdata;
$leganto->id = (int)$cm->instance;
$leganto->course = (int)$cm->course;
$leganto->name = $cm->name;
if (empty($leganto->intro)) {
$leganto->intro = '';
}
if (empty($leganto->introformat)) {
$leganto->introformat = FORMAT_MOODLE;
}
// Display leganto.
if ($renderer = $PAGE->get_renderer('mod_leganto')) {
$cm->set_content($renderer->display_leganto($leganto), true);
}
}
}