3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * Library of functions and constants for module wiki
21 * It contains the great majority of functions defined by Moodle
22 * that are mandatory to develop a module.
25 * @copyright 2009 Marc Alier, Jordi Piguillem marc.alier@upc.edu
26 * @copyright 2009 Universitat Politecnica de Catalunya http://www.upc.edu
28 * @author Jordi Piguillem
30 * @author David Jimenez
32 * @author Kenneth Riba
34 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37 defined('MOODLE_INTERNAL') ||
die();
40 * Given an object containing all the necessary data,
41 * (defined by the form in mod.html) this function
42 * will create a new instance and return the id number
43 * of the new instance.
45 * @param object $instance An object from the form in mod.html
46 * @return int The id of the newly inserted wiki record
48 function wiki_add_instance($wiki) {
51 $wiki->timemodified
= time();
52 # May have to add extra stuff in here #
53 if (empty($wiki->forceformat
)) {
54 $wiki->forceformat
= 0;
57 $id = $DB->insert_record('wiki', $wiki);
59 $completiontimeexpected = !empty($wiki->completionexpected
) ?
$wiki->completionexpected
: null;
60 \core_completion\api
::update_completion_date_event($wiki->coursemodule
, 'wiki', $id, $completiontimeexpected);
66 * Given an object containing all the necessary data,
67 * (defined by the form in mod.html) this function
68 * will update an existing instance with new data.
70 * @param object $instance An object from the form in mod.html
71 * @return boolean Success/Fail
73 function wiki_update_instance($wiki) {
76 $wiki->timemodified
= time();
77 $wiki->id
= $wiki->instance
;
78 if (empty($wiki->forceformat
)) {
79 $wiki->forceformat
= 0;
82 $completiontimeexpected = !empty($wiki->completionexpected
) ?
$wiki->completionexpected
: null;
83 \core_completion\api
::update_completion_date_event($wiki->coursemodule
, 'wiki', $wiki->id
, $completiontimeexpected);
85 # May have to add extra stuff in here #
87 return $DB->update_record('wiki', $wiki);
91 * Given an ID of an instance of this module,
92 * this function will permanently delete the instance
93 * and any data that depends on it.
95 * @param int $id Id of the module instance
96 * @return boolean Success/Failure
98 function wiki_delete_instance($id) {
101 if (!$wiki = $DB->get_record('wiki', array('id' => $id))) {
107 # Get subwiki information #
108 $subwikis = $DB->get_records('wiki_subwikis', array('wikiid' => $wiki->id
));
110 foreach ($subwikis as $subwiki) {
111 # Get existing links, and delete them #
112 if (!$DB->delete_records('wiki_links', array('subwikiid' => $subwiki->id
), IGNORE_MISSING
)) {
116 # Get existing pages #
117 if ($pages = $DB->get_records('wiki_pages', array('subwikiid' => $subwiki->id
))) {
118 foreach ($pages as $page) {
119 # Get locks, and delete them #
120 if (!$DB->delete_records('wiki_locks', array('pageid' => $page->id
), IGNORE_MISSING
)) {
124 # Get versions, and delete them #
125 if (!$DB->delete_records('wiki_versions', array('pageid' => $page->id
), IGNORE_MISSING
)) {
131 if (!$DB->delete_records('wiki_pages', array('subwikiid' => $subwiki->id
), IGNORE_MISSING
)) {
136 # Get existing synonyms, and delete them #
137 if (!$DB->delete_records('wiki_synonyms', array('subwikiid' => $subwiki->id
), IGNORE_MISSING
)) {
141 # Delete any subwikis #
142 if (!$DB->delete_records('wiki_subwikis', array('id' => $subwiki->id
), IGNORE_MISSING
)) {
147 $cm = get_coursemodule_from_instance('wiki', $id);
148 \core_completion\api
::update_completion_date_event($cm->id
, 'wiki', $wiki->id
, null);
150 # Delete any dependent records here #
151 if (!$DB->delete_records('wiki', array('id' => $wiki->id
))) {
159 * Implements callback to reset course
161 * @param stdClass $data
162 * @return boolean|array
164 function wiki_reset_userdata($data) {
166 require_once($CFG->dirroot
. '/mod/wiki/pagelib.php');
167 require_once($CFG->dirroot
. "/mod/wiki/locallib.php");
169 $componentstr = get_string('modulenameplural', 'wiki');
172 //get the wiki(s) in this course.
173 if (!$wikis = $DB->get_records('wiki', array('course' => $data->courseid
))) {
176 if (empty($data->reset_wiki_comments
) && empty($data->reset_wiki_tags
) && empty($data->reset_wiki_pages
)) {
180 foreach ($wikis as $wiki) {
181 if (!$cm = get_coursemodule_from_instance('wiki', $wiki->id
, $data->courseid
)) {
184 $context = context_module
::instance($cm->id
);
186 // Remove tags or all pages.
187 if (!empty($data->reset_wiki_pages
) ||
!empty($data->reset_wiki_tags
)) {
189 // Get subwiki information.
190 $subwikis = wiki_get_subwikis($wiki->id
);
192 foreach ($subwikis as $subwiki) {
193 // Get existing pages.
194 if ($pages = wiki_get_page_list($subwiki->id
)) {
195 // If the wiki page isn't selected then we are only removing tags.
196 if (empty($data->reset_wiki_pages
)) {
197 // Go through each page and delete the tags.
198 foreach ($pages as $page) {
199 core_tag_tag
::remove_all_item_tags('mod_wiki', 'wiki_pages', $page->id
);
202 // Otherwise we are removing pages and tags.
203 wiki_delete_pages($context, $pages, $subwiki->id
);
206 if (!empty($data->reset_wiki_pages
)) {
207 // Delete any subwikis.
208 $DB->delete_records('wiki_subwikis', array('id' => $subwiki->id
), IGNORE_MISSING
);
210 // Delete any attached files.
211 $fs = get_file_storage();
212 $fs->delete_area_files($context->id
, 'mod_wiki', 'attachments');
216 if (!empty($data->reset_wiki_pages
)) {
217 $status[] = array('component' => $componentstr, 'item' => get_string('deleteallpages', 'wiki'),
220 if (!empty($data->reset_wiki_tags
)) {
221 $status[] = array('component' => $componentstr, 'item' => get_string('tagsdeleted', 'wiki'), 'error' => false);
225 // Remove all comments.
226 if (!empty($data->reset_wiki_comments
) ||
!empty($data->reset_wiki_pages
)) {
227 $DB->delete_records_select('comments', "contextid = ? AND commentarea='wiki_page'", array($context->id
));
228 if (!empty($data->reset_wiki_comments
)) {
229 $status[] = array('component' => $componentstr, 'item' => get_string('deleteallcomments'), 'error' => false);
234 // Any changes to the list of dates that needs to be rolled should be same during course restore and course reset.
236 shift_course_mod_dates('wiki', array('editbegin', 'editend'), $data->timeshift
, $data->courseid
);
237 $status[] = array('component' => $componentstr, 'item' => get_string('datechanged'), 'error' => false);
243 function wiki_reset_course_form_definition(&$mform) {
244 $mform->addElement('header', 'wikiheader', get_string('modulenameplural', 'wiki'));
245 $mform->addElement('advcheckbox', 'reset_wiki_pages', get_string('deleteallpages', 'wiki'));
246 $mform->addElement('advcheckbox', 'reset_wiki_tags', get_string('removeallwikitags', 'wiki'));
247 $mform->addElement('advcheckbox', 'reset_wiki_comments', get_string('deleteallcomments'));
251 * Indicates API features that the wiki supports.
253 * @uses FEATURE_GROUPS
254 * @uses FEATURE_GROUPINGS
255 * @uses FEATURE_MOD_INTRO
256 * @uses FEATURE_COMPLETION_TRACKS_VIEWS
257 * @uses FEATURE_COMPLETION_HAS_RULES
258 * @uses FEATURE_GRADE_HAS_GRADE
259 * @uses FEATURE_GRADE_OUTCOMES
260 * @param string $feature
261 * @return mixed True if module supports feature, false if not, null if doesn't know or string for the module purpose.
263 function wiki_supports($feature) {
267 case FEATURE_GROUPINGS
:
269 case FEATURE_MOD_INTRO
:
271 case FEATURE_COMPLETION_TRACKS_VIEWS
:
273 case FEATURE_GRADE_HAS_GRADE
:
275 case FEATURE_GRADE_OUTCOMES
:
279 case FEATURE_BACKUP_MOODLE2
:
281 case FEATURE_SHOW_DESCRIPTION
:
283 case FEATURE_COMMENT
:
285 case FEATURE_MOD_PURPOSE
:
286 return MOD_PURPOSE_COLLABORATION
;
294 * Given a course and a time, this module should find recent activity
295 * that has occurred in wiki activities and print it out.
296 * Return true if there was output, or false is there was none.
300 * @uses CONTEXT_MODULE
301 * @uses VISIBLEGROUPS
302 * @param object $course
303 * @param bool $viewfullnames capability
304 * @param int $timestart
307 function wiki_print_recent_activity($course, $viewfullnames, $timestart) {
308 global $CFG, $DB, $OUTPUT;
310 $sql = "SELECT p.id, p.timemodified, p.subwikiid, sw.wikiid, w.wikimode, sw.userid, sw.groupid
312 JOIN {wiki_subwikis} sw ON sw.id = p.subwikiid
313 JOIN {wiki} w ON w.id = sw.wikiid
314 WHERE p.timemodified > ? AND w.course = ?
315 ORDER BY p.timemodified ASC";
316 if (!$pages = $DB->get_records_sql($sql, array($timestart, $course->id
))) {
319 require_once($CFG->dirroot
. "/mod/wiki/locallib.php");
323 $modinfo = get_fast_modinfo($course);
325 $subwikivisible = array();
326 foreach ($pages as $page) {
327 if (!isset($subwikivisible[$page->subwikiid
])) {
328 $subwiki = (object)array('id' => $page->subwikiid
, 'wikiid' => $page->wikiid
,
329 'groupid' => $page->groupid
, 'userid' => $page->userid
);
330 $wiki = (object)array('id' => $page->wikiid
, 'course' => $course->id
, 'wikimode' => $page->wikimode
);
331 $subwikivisible[$page->subwikiid
] = wiki_user_can_view($subwiki, $wiki);
333 if ($subwikivisible[$page->subwikiid
]) {
337 unset($subwikivisible);
343 echo $OUTPUT->heading(get_string("updatedwikipages", 'wiki') . ':', 6);
344 foreach ($wikis as $wiki) {
345 $cm = $modinfo->instances
['wiki'][$wiki->wikiid
];
346 $link = $CFG->wwwroot
. '/mod/wiki/view.php?pageid=' . $wiki->id
;
347 print_recent_activity_note($wiki->timemodified
, $wiki, $cm->name
, $link, false, $viewfullnames);
350 return true; // True if anything was printed, otherwise false
354 * Must return an array of grades for a given instance of this module,
355 * indexed by user. It also returns a maximum allowed grade.
358 * $return->grades = array of grades;
359 * $return->maxgrade = maximum allowed grade;
363 * @param int $wikiid ID of an instance of this module
364 * @return mixed Null or object with an array of grades and with the maximum grade
366 function wiki_grades($wikiid) {
371 * @deprecated since Moodle 3.8
373 function wiki_scale_used() {
374 throw new coding_exception('wiki_scale_used() can not be used anymore. Plugins can implement ' .
375 '<modname>_scale_used_anywhere, all implementations of <modname>_scale_used are now ignored');
379 * Checks if scale is being used by any instance of wiki.
380 * This function was added in 1.9
382 * This is used to find out if scale used anywhere
383 * @param $scaleid int
384 * @return boolean True if the scale is used by any wiki
386 function wiki_scale_used_anywhere($scaleid) {
389 //if ($scaleid and $DB->record_exists('wiki', array('grade' => -$scaleid))) {
399 * file serving callback
401 * @copyright Josep Arus
404 * @param stdClass $course course object
405 * @param stdClass $cm course module object
406 * @param stdClass $context context object
407 * @param string $filearea file area
408 * @param array $args extra arguments
409 * @param bool $forcedownload whether or not force download
410 * @param array $options additional options affecting the file serving
411 * @return bool false if the file was not found, just send the file otherwise and do not return anything
413 function wiki_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload, array $options=array()) {
416 if ($context->contextlevel
!= CONTEXT_MODULE
) {
420 require_login($course, true, $cm);
422 require_once($CFG->dirroot
. "/mod/wiki/locallib.php");
424 if ($filearea == 'attachments') {
425 $swid = (int) array_shift($args);
427 if (!$subwiki = wiki_get_subwiki($swid)) {
431 require_capability('mod/wiki:viewpage', $context);
433 $relativepath = implode('/', $args);
435 $fullpath = "/$context->id/mod_wiki/attachments/$swid/$relativepath";
437 $fs = get_file_storage();
438 if (!$file = $fs->get_file_by_hash(sha1($fullpath)) or $file->is_directory()) {
442 send_stored_file($file, null, 0, $options);
449 * @param stdClass $cm course module object
450 * @param string $search searchword.
451 * @param stdClass $subwiki Optional Subwiki.
452 * @return Search wiki input form
454 function wiki_search_form($cm, $search = '', $subwiki = null) {
458 (object) ['type' => 'hidden', 'name' => 'courseid', 'value' => $cm->course
],
459 (object) ['type' => 'hidden', 'name' => 'cmid', 'value' => $cm->id
],
460 (object) ['type' => 'hidden', 'name' => 'searchwikicontent', 'value' => 1],
462 if (!empty($subwiki->id
)) {
463 $hiddenfields[] = (object) ['type' => 'hidden', 'name' => 'subwikiid', 'value' => $subwiki->id
];
466 'action' => new moodle_url('/mod/wiki/search.php'),
467 'hiddenfields' => $hiddenfields,
468 'inputname' => 'searchstring',
469 'query' => s($search, true),
470 'searchstring' => get_string('searchwikis', 'wiki'),
471 'extraclasses' => 'mt-2'
473 return $OUTPUT->render_from_template('core/search_input', $data);
476 function wiki_extend_navigation(navigation_node
$navref, $course, $module, $cm) {
477 global $CFG, $PAGE, $USER;
479 require_once($CFG->dirroot
. '/mod/wiki/locallib.php');
481 $context = context_module
::instance($cm->id
);
484 if ($module->wikimode
== 'individual') {
488 if (!$wiki = wiki_get_wiki($cm->instance
)) {
492 if (!$gid = groups_get_activity_group($cm)) {
495 if (!$subwiki = wiki_get_subwiki_by_group($cm->instance
, $gid, $userid)) {
498 $swid = $subwiki->id
;
501 $pageid = $url->param('pageid');
502 $cmid = $url->param('id');
503 if (empty($pageid) && !empty($cmid)) {
505 $page = wiki_get_page_by_title($swid, $wiki->firstpagetitle
);
509 if (wiki_can_create_pages($context)) {
510 $link = new moodle_url('/mod/wiki/create.php', array('action' => 'new', 'swid' => $swid));
511 $node = $navref->add(get_string('newpage', 'wiki'), $link, navigation_node
::TYPE_SETTING
);
514 if (is_numeric($pageid)) {
516 if (has_capability('mod/wiki:viewpage', $context)) {
517 $link = new moodle_url('/mod/wiki/view.php', array('pageid' => $pageid));
518 $node = $navref->add(get_string('view', 'wiki'), $link, navigation_node
::TYPE_SETTING
);
521 if (wiki_user_can_edit($subwiki)) {
522 $link = new moodle_url('/mod/wiki/edit.php', array('pageid' => $pageid));
523 $node = $navref->add(get_string('edit', 'wiki'), $link, navigation_node
::TYPE_SETTING
);
526 if (has_capability('mod/wiki:viewcomment', $context)) {
527 $link = new moodle_url('/mod/wiki/comments.php', array('pageid' => $pageid));
528 $node = $navref->add(get_string('comments', 'wiki'), $link, navigation_node
::TYPE_SETTING
);
531 if (has_capability('mod/wiki:viewpage', $context)) {
532 $link = new moodle_url('/mod/wiki/history.php', array('pageid' => $pageid));
533 $node = $navref->add(get_string('history', 'wiki'), $link, navigation_node
::TYPE_SETTING
);
536 if (has_capability('mod/wiki:viewpage', $context)) {
537 $link = new moodle_url('/mod/wiki/map.php', array('pageid' => $pageid));
538 $node = $navref->add(get_string('map', 'wiki'), $link, navigation_node
::TYPE_SETTING
);
541 if (has_capability('mod/wiki:viewpage', $context)) {
542 $link = new moodle_url('/mod/wiki/files.php', array('pageid' => $pageid));
543 $node = $navref->add(get_string('files', 'wiki'), $link, navigation_node
::TYPE_SETTING
);
546 if (has_capability('mod/wiki:managewiki', $context)) {
547 $link = new moodle_url('/mod/wiki/admin.php', array('pageid' => $pageid));
548 $node = $navref->add(get_string('admin', 'wiki'), $link, navigation_node
::TYPE_SETTING
);
553 * Returns all other caps used in wiki module
557 function wiki_get_extra_capabilities() {
558 return array('moodle/comment:view', 'moodle/comment:post', 'moodle/comment:delete');
562 * Running addtional permission check on plugin, for example, plugins
563 * may have switch to turn on/off comments option, this callback will
564 * affect UI display, not like pluginname_comment_validate only throw
566 * Capability check has been done in comment->check_permissions(), we
567 * don't need to do it again here.
572 * @param stdClass $comment_param {
573 * context => context the context object
574 * courseid => int course id
575 * cm => stdClass course module object
576 * commentarea => string comment area
577 * itemid => int itemid
581 function wiki_comment_permissions($comment_param) {
582 return array('post'=>true, 'view'=>true);
586 * Validate comment parameter before perform other comments actions
588 * @param stdClass $comment_param {
589 * context => context the context object
590 * courseid => int course id
591 * cm => stdClass course module object
592 * commentarea => string comment area
593 * itemid => int itemid
601 function wiki_comment_validate($comment_param) {
603 require_once($CFG->dirroot
. '/mod/wiki/locallib.php');
604 // validate comment area
605 if ($comment_param->commentarea
!= 'wiki_page') {
606 throw new comment_exception('invalidcommentarea');
609 if (!$record = $DB->get_record('wiki_pages', array('id'=>$comment_param->itemid
))) {
610 throw new comment_exception('invalidcommentitemid');
612 if (!$subwiki = wiki_get_subwiki($record->subwikiid
)) {
613 throw new comment_exception('invalidsubwikiid');
615 if (!$wiki = wiki_get_wiki_from_pageid($comment_param->itemid
)) {
616 throw new comment_exception('invalidid', 'data');
618 if (!$course = $DB->get_record('course', array('id'=>$wiki->course
))) {
619 throw new comment_exception('coursemisconf');
621 if (!$cm = get_coursemodule_from_instance('wiki', $wiki->id
, $course->id
)) {
622 throw new comment_exception('invalidcoursemodule');
624 $context = context_module
::instance($cm->id
);
626 if ($subwiki->groupid
) {
627 $groupmode = groups_get_activity_groupmode($cm, $course);
628 if ($groupmode == SEPARATEGROUPS
and !has_capability('moodle/site:accessallgroups', $context)) {
629 if (!groups_is_member($subwiki->groupid
)) {
630 throw new comment_exception('notmemberofgroup');
634 // validate context id
635 if ($context->id
!= $comment_param->context
->id
) {
636 throw new comment_exception('invalidcontext');
638 // validation for comment deletion
639 if (!empty($comment_param->commentid
)) {
640 if ($comment = $DB->get_record('comments', array('id'=>$comment_param->commentid
))) {
641 if ($comment->commentarea
!= 'wiki_page') {
642 throw new comment_exception('invalidcommentarea');
644 if ($comment->contextid
!= $context->id
) {
645 throw new comment_exception('invalidcontext');
647 if ($comment->itemid
!= $comment_param->itemid
) {
648 throw new comment_exception('invalidcommentitemid');
651 throw new comment_exception('invalidcommentid');
658 * Return a list of page types
659 * @param string $pagetype current page type
660 * @param stdClass $parentcontext Block's parent context
661 * @param stdClass $currentcontext Current context of block
663 function wiki_page_type_list($pagetype, $parentcontext, $currentcontext) {
664 $module_pagetype = array(
665 'mod-wiki-*'=>get_string('page-mod-wiki-x', 'wiki'),
666 'mod-wiki-view'=>get_string('page-mod-wiki-view', 'wiki'),
667 'mod-wiki-comments'=>get_string('page-mod-wiki-comments', 'wiki'),
668 'mod-wiki-history'=>get_string('page-mod-wiki-history', 'wiki'),
669 'mod-wiki-map'=>get_string('page-mod-wiki-map', 'wiki')
671 return $module_pagetype;
675 * Mark the activity completed (if required) and trigger the course_module_viewed event.
677 * @param stdClass $wiki Wiki object.
678 * @param stdClass $course Course object.
679 * @param stdClass $cm Course module object.
680 * @param stdClass $context Context object.
683 function wiki_view($wiki, $course, $cm, $context) {
684 // Trigger course_module_viewed event.
686 'context' => $context,
687 'objectid' => $wiki->id
689 $event = \mod_wiki\event\course_module_viewed
::create($params);
690 $event->add_record_snapshot('course_modules', $cm);
691 $event->add_record_snapshot('course', $course);
692 $event->add_record_snapshot('wiki', $wiki);
696 $completion = new completion_info($course);
697 $completion->set_module_viewed($cm);
701 * Mark the activity completed (if required) and trigger the page_viewed event.
703 * @param stdClass $wiki Wiki object.
704 * @param stdClass $page Page object.
705 * @param stdClass $course Course object.
706 * @param stdClass $cm Course module object.
707 * @param stdClass $context Context object.
708 * @param int $uid Optional User ID.
709 * @param array $other Optional Other params: title, wiki ID, group ID, groupanduser, prettyview.
710 * @param stdClass $subwiki Optional Subwiki.
713 function wiki_page_view($wiki, $page, $course, $cm, $context, $uid = null, $other = null, $subwiki = null) {
715 // Trigger course_module_viewed event.
717 'context' => $context,
718 'objectid' => $page->id
721 $params['relateduserid'] = $uid;
723 if ($other != null) {
724 $params['other'] = $other;
727 $event = \mod_wiki\event\page_viewed
::create($params);
729 $event->add_record_snapshot('wiki_pages', $page);
730 $event->add_record_snapshot('course_modules', $cm);
731 $event->add_record_snapshot('course', $course);
732 $event->add_record_snapshot('wiki', $wiki);
733 if ($subwiki != null) {
734 $event->add_record_snapshot('wiki_subwikis', $subwiki);
739 $completion = new completion_info($course);
740 $completion->set_module_viewed($cm);
744 * Check if the module has any update that affects the current user since a given time.
746 * @param cm_info $cm course module data
747 * @param int $from the time to check updates from
748 * @param array $filter if we need to check only specific updates
749 * @return stdClass an object with the different type of areas indicating if they were updated or not
752 function wiki_check_updates_since(cm_info
$cm, $from, $filter = array()) {
754 require_once($CFG->dirroot
. '/mod/wiki/locallib.php');
756 $updates = new stdClass();
757 if (!has_capability('mod/wiki:viewpage', $cm->context
)) {
760 $updates = course_check_module_updates_since($cm, $from, array('attachments'), $filter);
762 // Check only pages updated in subwikis the user can access.
763 $updates->pages
= (object) array('updated' => false);
764 $wiki = $DB->get_record($cm->modname
, array('id' => $cm->instance
), '*', MUST_EXIST
);
765 if ($subwikis = wiki_get_visible_subwikis($wiki, $cm, $cm->context
)) {
766 $subwikisids = array();
767 foreach ($subwikis as $subwiki) {
768 $subwikisids[] = $subwiki->id
;
770 list($subwikissql, $params) = $DB->get_in_or_equal($subwikisids, SQL_PARAMS_NAMED
);
771 $select = 'subwikiid ' . $subwikissql . ' AND (timemodified > :since1 OR timecreated > :since2)';
772 $params['since1'] = $from;
773 $params['since2'] = $from;
774 $pages = $DB->get_records_select('wiki_pages', $select, $params, '', 'id');
775 if (!empty($pages)) {
776 $updates->pages
->updated
= true;
777 $updates->pages
->itemids
= array_keys($pages);
784 * Get icon mapping for font-awesome.
786 function mod_wiki_get_fontawesome_icon_map() {
788 'mod_wiki:attachment' => 'fa-paperclip',
793 * This function receives a calendar event and returns the action associated with it, or null if there is none.
795 * This is used by block_myoverview in order to display the event appropriately. If null is returned then the event
796 * is not displayed on the block.
798 * @param calendar_event $event
799 * @param \core_calendar\action_factory $factory
800 * @param int $userid User id to use for all capability checks, etc. Set to 0 for current user (default).
801 * @return \core_calendar\local\event\entities\action_interface|null
803 function mod_wiki_core_calendar_provide_event_action(calendar_event
$event,
804 \core_calendar\action_factory
$factory,
812 $cm = get_fast_modinfo($event->courseid
, $userid)->instances
['wiki'][$event->instance
];
814 if (!$cm->uservisible
) {
815 // The module is not visible to the user for any reason.
819 $completion = new \
completion_info($cm->get_course());
821 $completiondata = $completion->get_data($cm, false, $userid);
823 if ($completiondata->completionstate
!= COMPLETION_INCOMPLETE
) {
827 return $factory->create_instance(
829 new \
moodle_url('/mod/wiki/view.php', ['id' => $cm->id
]),
836 * Sets dynamic information about a course module
838 * This callback is called from cm_info when checking module availability (incl. $cm->uservisible)
840 * Main viewing capability in mod_wiki is 'mod/wiki:viewpage' instead of the expected standardised 'mod/wiki:view'.
841 * The method cm_info::is_user_access_restricted_by_capability() does not work for wiki, we need to implement
846 function wiki_cm_info_dynamic(cm_info
$cm) {
847 if (!has_capability('mod/wiki:viewpage', $cm->context
, $cm->get_modinfo()->get_user_id())) {
848 $cm->set_available(false);