MDL-65588 analytics: New models for student accesses

This commit is contained in:
David Monllaó 2019-05-17 12:24:13 +02:00
parent 7d8ed90757
commit 2d9280e0df
21 changed files with 1079 additions and 89 deletions

View file

@ -97,4 +97,20 @@ $models = [
'timesplitting' => '\core\analytics\time_splitting\upcoming_week',
'enabled' => true,
],
[
'target' => '\core_course\analytics\target\no_access_since_course_start',
'indicators' => [
'\core\analytics\indicator\any_course_access',
],
'timesplitting' => '\core\analytics\time_splitting\one_month_after_start',
'enabled' => true,
],
[
'target' => '\core_course\analytics\target\no_recent_accesses',
'indicators' => [
'\core\analytics\indicator\any_course_access',
],
'timesplitting' => '\core\analytics\time_splitting\past_month',
'enabled' => true,
],
];