diff --git a/backup/util/plan/restore_plan.class.php b/backup/util/plan/restore_plan.class.php index 3d0c6ca34a9cb..9943e0bd0bcc1 100644 --- a/backup/util/plan/restore_plan.class.php +++ b/backup/util/plan/restore_plan.class.php @@ -156,6 +156,16 @@ public function execute() { $this->controller->set_status(backup::STATUS_EXECUTING); parent::execute(); $this->controller->set_status(backup::STATUS_FINISHED_OK); + + events_trigger('course_restored', (object) array( + 'courseid' => $this->get_courseid(), // The new course + 'userid' => $this->get_userid(), // User doing the restore + 'type' => $this->controller->get_type(), // backup::TYPE_* constant + 'target' => $this->controller->get_target(), // backup::TARGET_* constant + 'mode' => $this->controller->get_mode(), // backup::MODE_* constant + 'operation' => $this->controller->get_operation(), // backup::OPERATION_* constant + 'samesite' => $this->controller->is_samesite(), + )); } /** diff --git a/lib/db/events.php b/lib/db/events.php index 51a8958c849e6..5d9a230ee3ee8 100644 --- a/lib/db/events.php +++ b/lib/db/events.php @@ -77,6 +77,7 @@ course_updated - object course table record course_content_removed - object course table record + context property course_deleted - object course table record + context property +course_restored - custom object with courseid, userid and restore information user_enrolled - object record from user_enrolments table + courseid,enrol user_enrol_modified - object record from user_enrolments table + courseid,enrol