-
Notifications
You must be signed in to change notification settings - Fork 2
/
lib.php
383 lines (335 loc) · 12.8 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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<?php
// This file is part of Mindmap module for 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/>.
/**
* Mindmap core interaction API
*
* @package mod
* @subpackage mindmap
* @author ekpenso.com
* @copyright 2012 Andy Chan <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
/**
* Given an object containing all the necessary data,
* (defined by the form in mod.html) this function
* will create a new instance and return the id number
* of the new instance.
*
* @param object $instance An object from the form in mod.html
* @return int The id of the newly inserted newmodule record
**/
function advmindmap_add_instance($advmindmap) {
global $DB, $USER;
// advmindmap
$advmindmap->userid = $USER->id;
if (isset($advmindmap->editable)) {
$advmindmap->editable = '1';
} else {
$advmindmap->editable = '0';
}
// Default mindmap: one "Moodle" node in the center
$advmindmap->xmldata = '
<MindMap>
<MM>
<Node x_Coord="400" y_Coord="270">
<Text>Moodle</Text>
<Format Underlined="0" Italic="0" Bold="0">
<Font>Trebuchet MS</Font>
<FontSize>14</FontSize>
<FontColor>ffffff</FontColor>
<BackgrColor>ff0000</BackgrColor>
</Format>
</Node>
</MM>
</MindMap>';
$advmindmap->timecreated = time();
$advmindmap->id = $DB->insert_record("advmindmap", $advmindmap);
if ($advmindmap->numdummygroups > 0) {
for ($i=0; $i<$advmindmap->numdummygroups; $i++) {
$dummy_mindmap_instance = advmindmap_set_new_instance($advmindmap);
$dummy_mindmap_instance->name = get_string('group').' '.($i+1);
$dummy_mindmap_instance->id = $DB->insert_record("advmindmap_instances", $dummy_mindmap_instance);
}
}
return $advmindmap->id;
}
/**
* Given an object containing all the necessary data,
* (defined by the form in mod.html) this function
* will update an existing instance with new data.
*
* @param object $instance An object from the form in mod.html
* @return boolean Success/Fail
**/
function advmindmap_update_instance($advmindmap) {
global $DB;
$advmindmap->timemodified = time();
$advmindmap->id = $advmindmap->instance;
if(isset($advmindmap->editable)) {
$advmindmap->editable = '1';
} else {
$advmindmap->editable = '0';
}
if ($advmindmap->numdummygroups == 0) {
// delete all previous created mindmap instances
$DB->delete_records("advmindmap_instances", array("advno"=>$advmindmap->id, "userid"=>"0", "groupid"=>"0"));
} else {
$params = array($advmindmap->id, 0, 0);
if ($alldummyinstances = $DB->get_records_select("advmindmap_instances", "advno = ? AND userid = ? AND groupid = ?", $params, "id ASC")) {
if (count($alldummyinstances) > $advmindmap->numdummygroups) {
// set lower number of dummies, so delete existing
$numinstancestodelete = count($alldummyinstances) - $advmindmap->numdummygroups;
while ($numinstancestodelete > 0) {
$deleteinstance = array_pop($alldummyinstances);
$DB->delete_records("advmindmap_instances", array("id"=>$deleteinstance->id));
$numinstancestodelete--;
}
} else if ($advmindmap->numdummygroups > count($alldummyinstances)) {
// set more number of dummies, add new
$numinstancestoadd = $advmindmap->numdummygroups - count($alldummyinstances);
for ($i=0; $i<$numinstancestoadd; $i++) {
$dummy_mindmap_instance = advmindmap_set_new_instance($advmindmap);
$dummy_mindmap_instance->name = get_string('group').' '.(count($alldummyinstances)+$i+1);
$dummy_mindmap_instance->id = $DB->insert_record("advmindmap_instances", $dummy_mindmap_instance);
}
}
} else {
if ($advmindmap->numdummygroups > 0) {
for ($i=0; $i<$advmindmap->numdummygroups; $i++) {
$dummy_mindmap_instance = advmindmap_set_new_instance($advmindmap);
$dummy_mindmap_instance->name = get_string('group').' '.($i+1);
$dummy_mindmap_instance->id = $DB->insert_record("advmindmap_instances", $dummy_mindmap_instance);
}
}
}
}
$advmindmap->timemodified = time();
return $DB->update_record("advmindmap", $advmindmap);
}
/**
* Given an ID of an instance of this module,
* this function will permanently delete the instance
* and any data that depends on it.
*
* @param int $id Id of the module instance
* @return boolean Success/Failure
**/
function advmindmap_delete_instance($id) {
global $DB;
if (! $advmindmap = $DB->get_record("advmindmap", array("id"=>$id))) {
return false;
}
$result = true;
if (! $DB->delete_records("advmindmap_instances", array("advno"=>$advmindmap->id))) {
$result = false;
}
if (! $DB->delete_records("advmindmap", array("id"=>$advmindmap->id))) {
$result = false;
}
return $result;
}
// Update the per-user instance
function advmindmap_update_user_instance($advmindmap_instance) {
global $DB, $USER;
$advmindmap_instance->timemodified = time();
$advmindmap_instance->useraccessed = $USER->id;
$advmindmap_instance->timeaccessed = time();
if(isset($advmindmap_instance->editable)) {
$advmindmap_instance->editable = '1';
} else {
$advmindmap_instance->editable = '0';
}
return $DB->update_record("advmindmap_instances", $advmindmap_instance);
}
/**
* Return a small object with summary information about what a
* user has done with a given particular instance of this module
* Used for user activity reports.
* $return->time = the time they did it
* $return->info = a short text description
*
* @return null
**/
function advmindmap_user_outline($course, $user, $mod, $advmindmap) {
global $DB;
$params = array('advno'=>$advmindmap->id, 'userid'=>$user->id);
if ($advmindmap_instance = $DB->get_record('advmindmap_instances', $params)) {
$result = new stdClass();
$result->info = get_string('lastupdated', 'advmindmap').userdate($advmindmap_instance->timemodified);
$result->time = $advmindmap_instance->timemodified;
return $result;
}
return null;
}
/**
* Print a detailed representation of what a user has done with
* a given particular instance of this module, for user activity reports.
*
* @return boolean
**/
function advmindmap_user_complete($course, $user, $mod, $advmindmap) {
global $CFG, $DB;
$params = array('advno'=>$advmindmap->id, 'userid'=>$user->id);
if ($advmindmap_instance = $DB->get_record('advmindmap_instances', $params)) {
$result = new stdClass();
$result->info = get_string('lastupdated', 'advmindmap').userdate($advmindmap_instance->timemodified);
$result->time = $advmindmap_instance->timemodified;
echo get_string('lastupdated', 'advmindmap').userdate($advmindmap_instance->timemodified);
} else {
print_string("notavailable", "advmindmap");
}
}
/**
* Given a course and a time, this module should find recent activity
* that has occurred in newmodule activities and print it out.
* Return true if there was output, or false is there was none.
*
* @uses $CFG
* @return boolean
* @todo Finish documenting this function
**/
function advmindmap_print_recent_activity($course, $isteacher, $timestart) {
global $CFG;
return false; // True if anything was printed, otherwise false
}
/**
* Create a new advmindmap instance with default values copy from advmindmap object
*
* @return object
*/
function advmindmap_set_new_instance($advmindmap) {
$instance = new stdClass();
$instance->advno = $advmindmap->id;
$instance->introformat = $advmindmap->introformat;
if (isset($advmindmap->editable)) {
$instance->editable = '1';
} else {
$instance->editable = '0';
}
$instance->userid = 0;
$instance->timecreated = time();
$instance->timemodified = 0;
$instance->timeaccessed = 0;
$instance->useraccessed = 0;
$instance->xmldata = '<MindMap>
<MM>
<Node x_Coord="400" y_Coord="270">
<Text>Moodle</Text>
<Format Underlined="0" Italic="0" Bold="0">
<Font>Trebuchet MS</Font>
<FontSize>14</FontSize>
<FontColor>ffffff</FontColor>
<BackgrColor>ff0000</BackgrColor>
</Format>
</Node>
</MM>
</MindMap>';
return $instance;
}
function advmindmap_add_access_record($instance) {
global $DB, $USER;
$instance->useraccessed = $USER->id;
$instance->timeaccessed = time();
return $DB->update_record("advmindmap_instances", $instance);
}
function advmindmap_clear_access_record($instance) {
global $DB;
$instance->useraccessed = 0;
$instance->timeaccessed = 0;
return $DB->update_record("advmindmap_instances", $instance);
}
/**
* Implementation of the function for printing the form elements that control
* whether the course reset functionality affects the advmindmap.
*
* @param object $mform form passed by reference
*/
function advmindmap_reset_course_form_definition(&$mform) {
$mform->addElement('header', 'advmindmapheader', get_string('modulenameplural', 'advmindmap'));
$mform->addElement('advcheckbox', 'reset_advmindmap', get_string('removeresponses','advmindmap'));
}
/**
* Course reset form defaults.
*
* @return array
*/
function advmindmap_reset_course_form_defaults($course) {
return array('reset_advmindmap'=>1);
}
/**
* Actual implementation of the reset course functionality, delete all the
* advmindmap instances for course $data->courseid.
*
* @global object
* @global object
* @param object $data the data submitted from the reset course.
* @return array status array
*/
function advmindmap_reset_userdata($data) {
global $CFG, $DB;
$componentstr = get_string('modulenameplural', 'advmindmap');
$status = array();
if (!empty($data->reset_advmindmap)) {
$advmindmapssql = "SELECT ad.id
FROM {advmindmap} ad
WHERE ad.course=?";
$params = array($data->courseid);
$DB->delete_records_select('advmindmap_instances', "advno IN ($advmindmapssql)", $params);
$status[] = array('component'=>$componentstr, 'item'=>get_string('removeinstances', 'advmindmap'), 'error'=>false);
}
/// updating dates - shift may be negative too
/*
if ($data->timeshift) {
shift_course_mod_dates('advmindmap', array(''), $data->timeshift, $data->courseid);
$status[] = array('component'=>$componentstr, 'item'=>get_string('datechanged'), 'error'=>false);
}
*/
return $status;
}
/**
* Returns all other caps used in module
*
* @return array
*/
function advmindmap_get_extra_capabilities() {
return array('moodle/site:accessallgroups');
}
function advmindmap_supports($feature) {
switch($feature) {
case FEATURE_GROUPS: return true;
case FEATURE_GROUPINGS: return true;
case FEATURE_GROUPMEMBERSONLY: return true;
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_GRADE_HAS_GRADE: return false;
case FEATURE_BACKUP_MOODLE2: return true;
case FEATURE_SHOW_DESCRIPTION: return true;
case FEATURE_ADVANCED_GRADING: return false;
default: return null;
}
}
/**
* 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
*/
function advmindmap_page_type_list($pagetype, $parentcontext, $currentcontext) {
$module_pagetype = array('mod-advmindmap-*'=>get_string('page-mod-advmindmap-x', 'advmindmap'));
return $module_pagetype;
}