moodle-local_course_complet.../version.php
Kumi 4a7f631532
feat: add course completion check functionality
Introduced a new observer to handle 'course_module_completion_updated' events, updating course completion status automatically. This streamlines the user experience by notifying users of their course completion status changes. Added observer registration to events configuration and updated the plugin version details.
2024-10-21 12:47:50 +02:00

6 lines
166 B
PHP

<?php
defined('MOODLE_INTERNAL') || die();
$plugin->version = 2024102100;
$plugin->requires = 2021051700;
$plugin->component = 'local_course_completion_checker';