mirror of
https://github.com/moodle/moodle.git
synced 2025-04-22 00:42:54 +02:00
* When we add users to a group (or remove them), we should refresh the course index cache so it stays in sync with what the user can actually see.
126 lines
5.3 KiB
PHP
126 lines
5.3 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* Hook listener callbacks.
|
|
*
|
|
* @package core
|
|
* @copyright 2023 Safat Shahin <safat.shahin@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$callbacks = [
|
|
[
|
|
'hook' => \core_group\hook\after_group_created::class,
|
|
'callback' => \core_communication\hook_listener::class . '::create_group_communication',
|
|
],
|
|
[
|
|
'hook' => \core_group\hook\after_group_updated::class,
|
|
'callback' => \core_communication\hook_listener::class . '::update_group_communication',
|
|
],
|
|
[
|
|
'hook' => \core_group\hook\after_group_deleted::class,
|
|
'callback' => \core_communication\hook_listener::class . '::delete_group_communication',
|
|
],
|
|
[
|
|
'hook' => \core_group\hook\after_group_membership_added::class,
|
|
'callback' => \core_communication\hook_listener::class . '::add_members_to_group_room',
|
|
],
|
|
[
|
|
'hook' => \core_group\hook\after_group_membership_removed::class,
|
|
'callback' => \core_communication\hook_listener::class . '::remove_members_from_group_room',
|
|
],
|
|
[
|
|
'hook' => \core_group\hook\after_group_membership_added::class,
|
|
'callback' => \core_courseformat\hook_listener::class . '::add_members_to_group',
|
|
],
|
|
[
|
|
'hook' => \core_group\hook\after_group_membership_removed::class,
|
|
'callback' => \core_courseformat\hook_listener::class . '::remove_members_from_group',
|
|
],
|
|
[
|
|
'hook' => \core_course\hook\after_course_created::class,
|
|
'callback' => \core_communication\hook_listener::class . '::create_course_communication',
|
|
],
|
|
[
|
|
'hook' => \core_course\hook\after_course_updated::class,
|
|
'callback' => \core_communication\hook_listener::class . '::update_course_communication',
|
|
],
|
|
[
|
|
'hook' => \core_course\hook\before_course_deleted::class,
|
|
'callback' => \core_communication\hook_listener::class . '::delete_course_communication',
|
|
],
|
|
[
|
|
'hook' => \core_user\hook\before_user_updated::class,
|
|
'callback' => \core_communication\hook_listener::class . '::update_user_room_memberships',
|
|
],
|
|
[
|
|
'hook' => \core_user\hook\before_user_deleted::class,
|
|
'callback' => \core_communication\hook_listener::class . '::delete_user_room_memberships',
|
|
],
|
|
[
|
|
'hook' => \core\hook\access\after_role_assigned::class,
|
|
'callback' => \core_communication\hook_listener::class . '::update_user_membership_for_role_changes',
|
|
],
|
|
[
|
|
'hook' => \core\hook\access\after_role_unassigned::class,
|
|
'callback' => \core_communication\hook_listener::class . '::update_user_membership_for_role_changes',
|
|
],
|
|
[
|
|
'hook' => \core_enrol\hook\after_enrol_instance_status_updated::class,
|
|
'callback' => \core_communication\hook_listener::class . '::update_communication_memberships_for_enrol_status_change',
|
|
],
|
|
[
|
|
'hook' => \core_enrol\hook\before_enrol_instance_deleted::class,
|
|
'callback' => \core_communication\hook_listener::class . '::remove_communication_memberships_for_enrol_instance_deletion',
|
|
],
|
|
[
|
|
'hook' => \core_enrol\hook\after_user_enrolled::class,
|
|
'callback' => \core_communication\hook_listener::class . '::add_communication_membership_for_enrolled_user',
|
|
],
|
|
[
|
|
'hook' => \core_enrol\hook\before_user_enrolment_updated::class,
|
|
'callback' => \core_communication\hook_listener::class . '::update_communication_membership_for_updated_user_enrolment',
|
|
],
|
|
[
|
|
'hook' => \core_enrol\hook\before_user_enrolment_removed::class,
|
|
'callback' => \core_communication\hook_listener::class . '::remove_communication_membership_for_unenrolled_user',
|
|
],
|
|
[
|
|
'hook' => \core\hook\output\before_standard_footer_html_generation::class,
|
|
'callback' => \core_userfeedback::class . '::before_standard_footer_html_generation',
|
|
],
|
|
[
|
|
'hook' => \core\hook\output\after_standard_main_region_html_generation::class,
|
|
'callback' => \core_message\hook_callbacks::class . '::add_messaging_widget',
|
|
'priority' => 0,
|
|
],
|
|
[
|
|
'hook' => \core\hook\task\after_failed_task_max_delay::class,
|
|
'callback' => core\task\failed_task_callbacks::class . '::send_failed_task_max_delay_message',
|
|
],
|
|
[
|
|
'hook' => \core\hook\di_configuration::class,
|
|
'callback' => [\core\router\hook_callbacks::class, 'provide_di_configuration'],
|
|
],
|
|
[
|
|
'hook' => \core_files\hook\before_file_created::class,
|
|
'callback' => [\core_files\redactor\hook_listener::class, 'file_redaction_handler'],
|
|
],
|
|
];
|