mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
MDL-60275 analytics: Specify missing prediction_action constructor arg
This commit is contained in:
parent
23ab0d7788
commit
698f361702
@ -72,14 +72,14 @@ class course_dropout extends \core_analytics\local\target\binary {
|
||||
$url = new \moodle_url('/message/index.php', array('user' => $USER->id, 'id' => $studentid));
|
||||
$pix = new \pix_icon('t/message', get_string('sendmessage', 'message'));
|
||||
$actions[] = new \core_analytics\prediction_action('studentmessage', $prediction, $url, $pix,
|
||||
get_string('sendmessage', 'message'), $attrs);
|
||||
get_string('sendmessage', 'message'), false, $attrs);
|
||||
|
||||
// View outline report.
|
||||
$url = new \moodle_url('/report/outline/user.php', array('id' => $studentid, 'course' => $sampledata['course']->id,
|
||||
'mode' => 'outline'));
|
||||
$pix = new \pix_icon('i/report', get_string('outlinereport'));
|
||||
$actions[] = new \core_analytics\prediction_action('viewoutlinereport', $prediction, $url, $pix,
|
||||
get_string('outlinereport'), $attrs);
|
||||
get_string('outlinereport'), false, $attrs);
|
||||
|
||||
return array_merge($actions, parent::prediction_actions($prediction, $includedetailsaction));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user