-
Notifications
You must be signed in to change notification settings - Fork 1
/
lib.php
682 lines (595 loc) · 23.5 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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
<?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_exeweb
* @copyright 2009 Petr Skoda {@link http://skodak.org}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use mod_exeweb\exeweb_package;
/** EXEWEB_ORIGIN_LOCAL = local */
define('EXEWEB_ORIGIN_LOCAL', 'local');
/** EXEWEB_ORIGIN_EXEONLINE = exeonline */
define('EXEWEB_ORIGIN_EXEONLINE', 'exeonline');
/**
* List of features supported in Exeweb 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 or string for the module purpose.
*/
function exeweb_supports($feature) {
switch($feature) {
case FEATURE_MOD_ARCHETYPE:
return MOD_ARCHETYPE_RESOURCE;
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;
case FEATURE_MOD_PURPOSE:
return MOD_PURPOSE_CONTENT;
default:
return null;
}
}
/**
* This function is used by the reset_course_userdata function in moodlelib.
* @param $data the data submitted from the reset course.
* @return array status array
*/
function exeweb_reset_userdata($data) {
// Any changes to the list of dates that needs to be rolled should be same during course restore and course reset.
// See MDL-9367.
return [];
}
/**
* List the actions that correspond to a view of this module.
* This is used by the participation report.
*
* Note: This is not used by new logging system. Event with
* crud = 'r' and edulevel = LEVEL_PARTICIPATING will
* be considered as view action.
*
* @return array
*/
function exeweb_get_view_actions() {
return ['view', 'view all'];
}
/**
* List the actions that correspond to a post of this module.
* This is used by the participation report.
*
* Note: This is not used by new logging system. Event with
* crud = ('c' || 'u' || 'd') and edulevel = LEVEL_PARTICIPATING
* will be considered as post action.
*
* @return array
*/
function exeweb_get_post_actions() {
return ['update', 'add'];
}
/**
* Add exeweb instance.
* @param object $data
* @param object $mform
* @return int new exeweb instance id
*/
function exeweb_add_instance($data, $mform) {
global $CFG, $DB, $USER;
require_once("$CFG->libdir/resourcelib.php");
require_once("$CFG->dirroot/mod/exeweb/locallib.php");
$cmid = $data->coursemodule;
$data->timecreated = time();
$data->timemodified = $data->timecreated;
$data->usermodified = $USER->id;
exeweb_set_display_options($data);
$data->id = $DB->insert_record('exeweb', $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, ['id' => $cmid]);
$context = context_module::instance($cmid);
if ($data->exeorigin === EXEWEB_ORIGIN_EXEONLINE) {
// We are going to set a template file so activity is complete event if exelearning failure.
$fs = get_file_storage();
$templatename = get_config('exeweb', 'template');
$templatefile = false;
$fileinfo = [
'contextid' => $context->id,
'component' => 'mod_exeweb',
'filearea' => 'package',
'itemid' => $data->revision,
'filepath' => '/',
'filename' => 'default_package.zip',
'userid' => $USER->id,
'source' => 'default_package.zip',
'author' => fullname($USER),
'license' => 'unknown',
];
if (! empty($templatename)) {
$templatefile = $fs->get_file(1, 'exeweb', 'config', 0, '/', ltrim($templatename, '/'));
}
if ($templatefile) {
$package = $fs->create_file_from_storedfile($fileinfo, $templatefile);
} else {
$defaultpackagepath = $CFG->dirroot . '/mod/exeweb/data/default_package.zip';
$package = $fs->create_file_from_pathname($fileinfo, $defaultpackagepath);
}
} else {
// Local uploaded package.
$package = exeweb_package::save_draft_file($data);
}
$contentslist = exeweb_package::expand_package($package);
$mainfile = exeweb_package::get_mainfile($contentslist, $package->get_contextid());
if ($mainfile !== false) {
file_set_sortorder($context->id, 'mod_exeweb', 'content', 0, $mainfile->get_filepath(), $mainfile->get_filename(), 1);
$data->entrypath = $mainfile->get_filepath();
$data->entryname = $mainfile->get_filename();
$DB->update_record('exeweb', $data);
}
$completiontimeexpected = !empty($data->completionexpected) ? $data->completionexpected : null;
\core_completion\api::update_completion_date_event($cmid, 'exeweb', $data->id, $completiontimeexpected);
return $data->id;
}
/**
* Update exeweb instance.
* @param object $data
* @param object $mform
* @return bool true
*/
function exeweb_update_instance($data, $mform) {
global $CFG, $DB, $USER;
require_once("$CFG->libdir/resourcelib.php");
$data->timecreated = time();
$data->timemodified = $data->timecreated;
$data->usermodified = $USER->id; $data->id = $data->instance;
exeweb_set_display_options($data);
if ($data->exeorigin === EXEWEB_ORIGIN_LOCAL) {
// Only save uploaded package if is local uploaded.
$data->revision++;
$package = exeweb_package::save_draft_file($data);
$contentslist = exeweb_package::expand_package($package);
$mainfile = exeweb_package::get_mainfile($contentslist, $package->get_contextid());
if ($mainfile !== false) {
file_set_sortorder($package->get_contextid(), 'mod_exeweb', 'content', 0,
$mainfile->get_filepath(), $mainfile->get_filename(), 1);
$data->entrypath = $mainfile->get_filepath();
$data->entryname = $mainfile->get_filename();
}
}
$DB->update_record('exeweb', $data);
$completiontimeexpected = !empty($data->completionexpected) ? $data->completionexpected : null;
\core_completion\api::update_completion_date_event($data->coursemodule, 'exeweb', $data->id, $completiontimeexpected);
return true;
}
/**
* Updates display options based on form input.
*
* Shared code used by exeweb_add_instance and exeweb_update_instance.
*
* @param object $data Data object
*/
function exeweb_set_display_options($data) {
$displayoptions = [];
if ($data->display == RESOURCELIB_DISPLAY_POPUP) {
$displayoptions['popupwidth'] = $data->popupwidth;
$displayoptions['popupheight'] = $data->popupheight;
}
if (in_array($data->display, [RESOURCELIB_DISPLAY_EMBED, RESOURCELIB_DISPLAY_FRAME])) {
$displayoptions['printintro'] = (int)!empty($data->printintro);
}
if (!empty($data->showsize)) {
$displayoptions['showsize'] = 1;
}
if (!empty($data->showtype)) {
$displayoptions['showtype'] = 1;
}
if (!empty($data->showdate)) {
$displayoptions['showdate'] = 1;
}
$data->displayoptions = serialize($displayoptions);
}
/**
* Delete exeweb instance.
* @param int $id
* @return bool true
*/
function exeweb_delete_instance($id) {
global $DB;
if (!$exeweb = $DB->get_record('exeweb', ['id' => $id])) {
return false;
}
$cm = get_coursemodule_from_instance('exeweb', $id);
\core_completion\api::update_completion_date_event($cm->id, 'exeweb', $id, null);
// Note: all context files are deleted automatically.
$DB->delete_records('exeweb', ['id' => $exeweb->id]);
return true;
}
/**
* Given a course_module object, this function returns any
* "extra" information that may be needed when printing
* this activity in a course listing.
*
* See {@link course_modinfo::get_array_of_activities()}
*
* @param stdClass $coursemodule
* @return cached_cm_info info
*/
function exeweb_get_coursemodule_info($coursemodule) {
global $CFG, $DB;
require_once("$CFG->libdir/filelib.php");
require_once("$CFG->dirroot/mod/exeweb/locallib.php");
require_once($CFG->libdir.'/completionlib.php');
$context = context_module::instance($coursemodule->id);
if (!$exeweb = $DB->get_record('exeweb', ['id' => $coursemodule->instance],
'id, name, display, displayoptions, revision, intro, introformat')) {
return null;
}
$info = new cached_cm_info();
$info->name = $exeweb->name;
if ($coursemodule->showdescription) {
// Convert intro to html. Do not filter cached version, filters run at display time.
$info->content = format_module_intro('exeweb', $exeweb, $coursemodule->id, false);
}
$display = $exeweb->display;
if ($display == RESOURCELIB_DISPLAY_POPUP) {
$fullurl = "$CFG->wwwroot/mod/exeweb/view.php?id=$coursemodule->id&redirect=1";
$options = empty($exeweb->displayoptions) ? [] : (array) unserialize_array($exeweb->displayoptions);
$width = empty($options['popupwidth']) ? 620 : $options['popupwidth'];
$height = empty($options['popupheight']) ? 450 : $options['popupheight'];
$wh = "width=$width,height=$height,toolbar=no,location=no,menubar=no,copyhistory=no,"
. "status=no,directories=no,scrollbars=yes,resizable=yes";
$info->onclick = "window.open('$fullurl', '', '$wh'); return false;";
} else if ($display == RESOURCELIB_DISPLAY_NEW) {
$fullurl = "$CFG->wwwroot/mod/exeweb/view.php?id=$coursemodule->id&redirect=1";
$info->onclick = "window.open('$fullurl'); return false;";
}
// If any optional extra details are turned on, store in custom data,
// add some file details as well to be used later by exeweb_get_optional_details() without retriving.
// Do not store filedetails if this is a reference - they will still need to be retrieved every time.
if (($filedetails = exeweb_get_file_details($exeweb, $coursemodule)) && empty($filedetails['isref'])) {
$displayoptions = (array) unserialize_array($exeweb->displayoptions);
$displayoptions['filedetails'] = $filedetails;
$info->customdata['displayoptions'] = serialize($displayoptions);
} else {
$info->customdata['displayoptions'] = $exeweb->displayoptions;
}
$info->customdata['display'] = $display;
return $info;
}
/**
* Called when viewing course page. Shows extra details after the link if
* enabled.
*
* @param cm_info $cm Course module information
*/
function exeweb_cm_info_view(cm_info $cm) {
global $CFG;
require_once($CFG->dirroot . '/mod/exeweb/locallib.php');
$exeweb = (object) ['displayoptions' => $cm->customdata['displayoptions']];
$details = exeweb_get_optional_details($exeweb, $cm);
if ($details) {
$cm->set_after_link(' ' . html_writer::tag('span', $details,
['class' => 'exeweblinkdetails']));
}
}
/**
* Lists all browsable file areas
*
* @package mod_exeweb
* @category files
* @param stdClass $course course object
* @param stdClass $cm course module object
* @param stdClass $context context object
* @return array
*/
function exeweb_get_file_areas($course, $cm, $context) {
$areas = [];
$areas['content'] = get_string('exewebcontent', 'mod_exeweb');
$areas['package'] = get_string('areapackage', 'mod_exeweb');
return $areas;
}
/**
* File browsing support for exeweb module content area.
*
* @package mod_exeweb
* @category files
* @param file_browser $browser file browser instance
* @param stdClass $areas file areas
* @param stdClass $course course object
* @param stdClass $cm course module object
* @param stdClass $context context object
* @param string $filearea file area
* @param int $itemid item ID
* @param string $filepath file path
* @param string $filename file name
* @return file_info instance or null if not found
*/
function exeweb_get_file_info($browser, $areas, $course, $cm, $context, $filearea, $itemid, $filepath, $filename) {
global $CFG;
if (!has_capability('moodle/course:managefiles', $context)) {
return null;
}
$fs = get_file_storage();
if ($filearea === 'content') {
$filepath = is_null($filepath) ? '/' : $filepath;
$filename = is_null($filename) ? '.' : $filename;
$urlbase = $CFG->wwwroot.'/pluginfile.php';
if (!$storedfile = $fs->get_file($context->id, 'mod_exeweb', 'content', 0, $filepath, $filename)) {
if ($filepath === '/' && $filename === '.') {
$storedfile = new virtual_root_file($context->id, 'mod_exeweb', 'content', 0);
} else {
// Not found.
return null;
}
}
require_once("$CFG->dirroot/mod/exeweb/locallib.php");
return new exeweb_content_file_info(
$browser, $context, $storedfile, $urlbase, $areas[$filearea], true, true, true, false
);
} else if ($filearea === 'package') {
$filepath = is_null($filepath) ? '/' : $filepath;
$filename = is_null($filename) ? '.' : $filename;
$urlbase = $CFG->wwwroot.'/pluginfile.php';
if (!$storedfile = $fs->get_file($context->id, 'mod_exeweb', 'package', 0, $filepath, $filename)) {
if ($filepath === '/' && $filename === '.') {
$storedfile = new virtual_root_file($context->id, 'mod_exeweb', 'package', 0);
} else {
// Not found.
return null;
}
}
return new file_info_stored($browser, $context, $storedfile, $urlbase, $areas[$filearea], false, true, false, false);
}
// Note: exeweb_intro handled in file_browser automatically.
return null;
}
/**
* Serves the exeweb files.
*
* @package mod_exeweb
* @category files
* @param stdClass $course course object
* @param stdClass $cm course module object
* @param stdClass $context context object
* @param string $filearea file area
* @param array $args extra arguments
* @param bool $forcedownload whether or not force download
* @param array $options additional options affecting the file serving
* @return bool false if file not found, does not return if found - just send the file
*/
function exeweb_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload, array $options=[]) {
global $CFG, $DB;
require_once("$CFG->libdir/resourcelib.php");
if ($context->contextlevel != CONTEXT_MODULE) {
return false;
}
require_course_login($course, true, $cm);
if (!has_capability('mod/exeweb:view', $context)) {
return false;
}
if ($filearea !== 'content') {
// Intro is handled automatically in pluginfile.php.
return false;
}
$revision = array_shift($args); // Ignore revision - designed to prevent caching problems only.
$fs = get_file_storage();
$relativepath = implode('/', $args);
$fullpath = rtrim("/$context->id/mod_exeweb/$filearea/$revision/$relativepath", '/');
do {
if (!$file = $fs->get_file_by_hash(sha1($fullpath))) {
if ($fs->get_file_by_hash(sha1("$fullpath/."))) {
if ($file = $fs->get_file_by_hash(sha1("$fullpath/index.htm"))) {
break;
}
if ($file = $fs->get_file_by_hash(sha1("$fullpath/index.html"))) {
break;
}
if ($file = $fs->get_file_by_hash(sha1("$fullpath/Default.htm"))) {
break;
}
}
}
} while (false);
// Should we apply filters?
$mimetype = $file->get_mimetype();
if ($mimetype === 'text/html' || $mimetype === 'text/plain' || $mimetype === 'application/xhtml+xml') {
$filter = $DB->get_field('exeweb', 'filterfiles', ['id' => $cm->instance]);
$CFG->embeddedsoforcelinktarget = true;
} else {
$filter = 0;
}
// Finally send the file.
send_stored_file($file, null, $filter, $forcedownload, $options);
}
/**
* 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 exeweb_page_type_list($pagetype, $parentcontext, $currentcontext) {
$modulepagetype = ['mod-exeweb-*' => get_string('page-mod-exeweb-x', 'mod_exeweb')];
return $modulepagetype;
}
/**
* Export file exeweb contents
*
* @return array of file content
*/
function exeweb_export_contents($cm, $baseurl) {
global $CFG, $DB;
$contents = [];
$context = context_module::instance($cm->id);
$exeweb = $DB->get_record('exeweb', ['id' => $cm->instance], '*', MUST_EXIST);
$fs = get_file_storage();
$files = $fs->get_area_files($context->id, 'mod_exeweb', 'package', 0, 'sortorder DESC, id ASC', false);
foreach ($files as $fileinfo) {
$file = [];
$file['type'] = 'file';
$file['filename'] = $fileinfo->get_filename();
$file['filepath'] = $fileinfo->get_filepath();
$file['filesize'] = $fileinfo->get_filesize();
$file['fileurl'] = moodle_url::make_pluginfile_url($context->id, 'mod_exeweb', 'package', $exeweb->revision,
$fileinfo->get_filepath(), $fileinfo->get_filename());
$file['timecreated'] = $fileinfo->get_timecreated();
$file['timemodified'] = $fileinfo->get_timemodified();
$file['sortorder'] = $fileinfo->get_sortorder();
$file['userid'] = $fileinfo->get_userid();
$file['author'] = $fileinfo->get_author();
$file['license'] = $fileinfo->get_license();
$file['mimetype'] = $fileinfo->get_mimetype();
$file['isexternalfile'] = $fileinfo->is_external_file();
if ($file['isexternalfile']) {
$file['repositorytype'] = $fileinfo->get_repository_type();
}
$contents[] = $file;
}
return $contents;
}
/**
* Register the ability to handle drag and drop file uploads
* @return array containing details of the files / types the mod can handle
*/
function exeweb_dndupload_register() {
return [
'files' => [
['extension' => 'zip',
'message' => get_string('dnduploadexeweb', 'mod_exeweb')]
]
];
}
/**
* Handle a file that has been uploaded
* @param object $uploadinfo details of the file / content that has been uploaded
* @return int instance id of the newly created mod
*/
function exeweb_dndupload_handle($uploadinfo) {
// TODO: Check package and process it.
// Gather the required info.
$data = new \stdClass();
$data->course = $uploadinfo->course->id;
$data->name = $uploadinfo->displayname;
$data->intro = '';
$data->introformat = FORMAT_HTML;
$data->coursemodule = $uploadinfo->coursemodule;
$data->files = $uploadinfo->draftitemid;
// Set the display options to the site defaults.
$config = get_config('exeweb');
$data->display = $config->display;
$data->popupheight = $config->popupheight;
$data->popupwidth = $config->popupwidth;
$data->printintro = $config->printintro;
$data->showsize = (isset($config->showsize)) ? $config->showsize : 0;
$data->showtype = (isset($config->showtype)) ? $config->showtype : 0;
$data->showdate = (isset($config->showdate)) ? $config->showdate : 0;
$data->filterfiles = $config->filterfiles;
return exeweb_add_instance($data, null);
}
/**
* Mark the activity completed (if required) and trigger the course_module_viewed event.
*
* @param stdClass $exeweb exeweb object
* @param stdClass $course course object
* @param stdClass $cm course module object
* @param stdClass $context context object
* @since Moodle 3.0
*/
function exeweb_view($exeweb, $course, $cm, $context) {
// Trigger course_module_viewed event.
$params = [
'context' => $context,
'objectid' => $exeweb->id
];
$event = \mod_exeweb\event\course_module_viewed::create($params);
$event->add_record_snapshot('course_modules', $cm);
$event->add_record_snapshot('course', $course);
$event->add_record_snapshot('exeweb', $exeweb);
$event->trigger();
// Completion.
$completion = new completion_info($course);
$completion->set_module_viewed($cm);
}
/**
* Check if the module has any update that affects the current user since a given time.
*
* @param cm_info $cm course module data
* @param int $from the time to check updates from
* @param array $filter if we need to check only specific updates
* @return stdClass an object with the different type of areas indicating if they were updated or not
* @since Moodle 3.2
*/
function exeweb_check_updates_since(cm_info $cm, $from, $filter = []) {
$updates = course_check_module_updates_since($cm, $from, ['content'], $filter);
return $updates;
}
/**
* This function receives a calendar event and returns the action associated with it, or null if there is none.
*
* This is used by block_myoverview in order to display the event appropriately. If null is returned then the event
* is not displayed on the block.
*
* @param calendar_event $event
* @param \core_calendar\action_factory $factory
* @return \core_calendar\local\event\entities\action_interface|null
*/
function mod_exeweb_core_calendar_provide_event_action(calendar_event $event,
\core_calendar\action_factory $factory, $userid = 0) {
global $USER;
if (empty($userid)) {
$userid = $USER->id;
}
$cm = get_fast_modinfo($event->courseid, $userid)->instances['exeweb'][$event->instance];
$completion = new \completion_info($cm->get_course());
$completiondata = $completion->get_data($cm, false, $userid);
if ($completiondata->completionstate != COMPLETION_INCOMPLETE) {
return null;
}
return $factory->create_instance(
get_string('view'),
new \moodle_url('/mod/exeweb/view.php', ['id' => $cm->id]),
1,
true
);
}
/**
* Given an array with a file path, it returns the itemid and the filepath for the defined filearea.
*
* @param string $filearea The filearea.
* @param array $args The path (the part after the filearea and before the filename).
* @return array The itemid and the filepath inside the $args path, for the defined filearea.
*/
function mod_exeweb_get_path_from_pluginfile(string $filearea, array $args) : array {
// Exeweb never has an itemid (the number represents the revision but it's not stored in database).
array_shift($args);
// Get the filepath.
if (empty($args)) {
$filepath = '/';
} else {
$filepath = '/' . implode('/', $args) . '/';
}
return [
'itemid' => 0,
'filepath' => $filepath,
];
}