-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.php
208 lines (180 loc) · 7.71 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
<?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/>.
/**
* @package mod_cardbox
* @copyright 2019 RWTH Aachen (see README.md)
* @author Anna Heynkes
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
function cardbox_supports($feature) {
switch($feature) {
case FEATURE_MOD_INTRO:
return true;
case FEATURE_BACKUP_MOODLE2:
return true;
case FEATURE_SHOW_DESCRIPTION:
return true;
default:
return null;
}
}
/**
* The cardbox_add_instance function is passed the variables from the mod_form.php file
* as an object when you first create an activity and click submit. This is where you can
* take that data, do what you want with it and then insert it into the database if you wish.
* This is only called once when the module instance is first created, so this is where you
* should place the logic to add the activity.
*
* @param type $cardbox
*/
function cardbox_add_instance($data, $mform) {
global $CFG, $DB;
require_once("$CFG->libdir/resourcelib.php");
$cmid = $data->coursemodule;
$data->timecreated = time();
$data->timemodified = time();
cardbox_set_display_options($data);
$data->id = $DB->insert_record('cardbox', $data);
// We need to use context now, so we need to make sure all needed info is already in db.
$DB->set_field('course_modules', 'instance', $data->id, array('id' => $cmid));
$completiontimeexpected = !empty($data->completionexpected) ? $data->completionexpected : null;
\core_completion\api::update_completion_date_event($cmid, 'cardbox', $data->id, $completiontimeexpected);
return $data->id;
}
/**
* The cardbox_update_instance function is passed the variables from the mod_form.php file
* as an object whenever you update an activity and click submit. The id of the instance you
* are editing is passed as the attribute instance and can be used to edit any existing values
* in the database for that instance.
*
* @param type $cardbox
*/
function cardbox_update_instance($cardbox) {
global $CFG, $DB;
require_once("$CFG->libdir/resourcelib.php");
$cardbox->timemodified = time();
$cardbox->id = $cardbox->instance;
$cardbox->revision++;
cardbox_set_display_options($cardbox); // Can be deleted or extended.
$DB->update_record('cardbox', $cardbox);
$completiontimeexpected = !empty($cardbox->completionexpected) ? $data->completionexpected : null;
\core_completion\api::update_completion_date_event($cardbox->coursemodule, 'cardbox', $cardbox->id, $completiontimeexpected);
return true;
}
/**
* The cardbox__delete_instance function is passed the id of your module which you can use
* to delete the records from any database tables associated with that id.
*
* @param int $cardboxinstanceid
*/
function cardbox_delete_instance($cardboxinstanceid) {
global $DB;
if (!$cardbox = $DB->get_record('cardbox', array('id' => $cardboxinstanceid))) {
return false;
}
if (!$cm = get_coursemodule_from_instance('cardbox', $cardboxinstanceid)) {
return false;
}
if (!$course = $DB->get_record('course', array('id' => $cm->course))) {
return false;
}
\core_completion\api::update_completion_date_event($cm->id, 'cardbox', $cardboxinstanceid, null);
// 1.1 Get all the cards of this cardbox.
$cards = $DB->get_records('cardbox_cards', ['cardbox' => $cardboxinstanceid]);
foreach ($cards as $card) {
// 1.2 Delete all their contents.
if (!$DB->delete_records('cardbox_cardcontents', ['card' => $card->id]) == 1) {
return false;
}
// 1.3 Delete their references in the students cardboxes.
if (!$DB->delete_records('cardbox_progress', ['card' => $card->id]) == 1) {
return false;
}
}
// 1.4 Delete the cards themselves.
if (!$DB->delete_records('cardbox_cards', ['cardbox' => $cardboxinstanceid]) == 1) {
return false;
}
// 2. Delete any topics affiliated with this cardbox.
if (!$DB->delete_records('cardbox_topics', ['cardboxid' => $cardboxinstanceid]) == 1) {
return false;
}
// 3. Delete the cardbox instance from the cardbox table of the plugin.
if (!$DB->delete_records('cardbox', ['id' => $cardboxinstanceid]) == 1) {
return false;
}
return true;
}
/**
* Updates display options based on form input.
*
* Shared code used by pdfannotator_add_instance and pdfannotator_update_instance.
* keep it, if you want defind more disply options
* @param object $data Data object
*/
function cardbox_set_display_options($data) {
$displayoptions = array();
$displayoptions['printintro'] = (int) !empty($data->printintro);
$data->displayoptions = serialize($displayoptions);
}
/**
* Serve the files from the MYPLUGIN file areas
*
* @param stdClass $course the course object
* @param stdClass $cm the course module object
* @param stdClass $context the context
* @param string $filearea the name of the file area
* @param array $args extra arguments (itemid, path)
* @param bool $forcedownload whether or not force download
* @param array $options additional options affecting the file serving
* @return bool false if the file not found, just send the file otherwise and do not return anything
*/
function mod_cardbox_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload, array $options=array()) {
global $DB;
// 1. Check the contextlevel is as expected - if your plugin is a block, this becomes CONTEXT_BLOCK, etc.
if ($context->contextlevel != CONTEXT_MODULE) {
return false;
}
// 2. Make sure the filearea is one of those used by the plugin.
if ($filearea != 'content') {
return false;
}
// 3. Make sure the user is logged in and has access to the module (plugins that are not course modules should leave out the 'cm' part).
// Disabled, so that students can see images in changenotification emails:
// 4. Check the relevant capabilities - these may vary depending on the filearea being accessed.
if (!has_capability('mod/cardbox:view', $context)) {
return false;
}
// 5. Leave this line out if you set the itemid to null in make_pluginfile_url (set $itemid to 0 instead).
$itemid = (int)array_shift($args); // The first item in the $args array.
// Use the itemid to retrieve any relevant data records and perform any security checks to see if the
// user really does have access to the file in question.
// 6. Extract the filename / filepath from the $args array.
$filename = array_pop($args);
if (empty($args)) {
$filepath = '/';
} else {
$filepath = '/'.implode('/', $args).'/';
}
// 7. Retrieve the file from the Files API.
$fs = get_file_storage();
$file = $fs->get_file($context->id, 'mod_cardbox', $filearea, $itemid, $filepath, $filename);
if (!$file) {
return false; // The file does not exist.
}
// 8. We can now send the file back to the browser - in this case with a cache lifetime of 1 day and no filtering.
send_stored_file($file, 86400, 0, $forcedownload, $options);
}