MDL-69127 analytics: final removal of renamed target class mapping.

This commit is contained in:
Paul Holden 2023-01-05 17:28:59 +00:00
parent b8b905cd90
commit d843168c14
2 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,15 @@
This files describes API changes in analytics sub system,
information provided here is intended especially for developers.
=== 4.2 ===
* The following analytics target classes, renamed since 3.7, have now been removed completed:
- `\core\analytics\target\course_dropout`
- `\core\analytics\target\course_competencies`
- `\core\analytics\target\course_completion`
- `\core\analytics\target\course_gradetopass`
- `\core\analytics\target\no_teaching`
=== 3.11 ===
* Final deprecation get_enabled_time_splitting_methods. Method has been removed. Use

View File

@ -36,12 +36,6 @@ defined('MOODLE_INTERNAL') || die();
// The old class name is the key, the new class name is the value.
// The array must be called $renamedclasses.
$renamedclasses = [
// Since Moodle 3.7.
'core\\analytics\\target\\course_dropout' => 'core_course\\analytics\\target\\course_dropout',
'core\\analytics\\target\\course_competencies' => 'core_course\\analytics\\target\\course_competencies',
'core\\analytics\\target\\course_completion' => 'core_course\\analytics\\target\\course_completion',
'core\\analytics\\target\\course_gradetopass' => 'core_course\\analytics\\target\\course_gradetopass',
'core\\analytics\\target\\no_teaching' => 'core_course\\analytics\\target\\no_teaching',
// Since Moodle 4.0.
'format_base' => 'core_courseformat\\base',
'format_topics_renderer' => 'format_topics\\output\\renderer',