|
@ -80,13 +80,19 @@ class notify extends \core\task\scheduled_task { |
|
|
if (!empty($record->thirdpartyemails)) { |
|
|
if (!empty($record->thirdpartyemails)) { |
|
|
$sendto = explode(',', $record->thirdpartyemails); |
|
|
$sendto = explode(',', $record->thirdpartyemails); |
|
|
$record->percent = round($record->percent * 100)."%"; |
|
|
$record->percent = round($record->percent * 100)."%"; |
|
|
|
|
|
$context = context_module::instance($record->cmid); |
|
|
foreach ($sendto as $senduser) { |
|
|
foreach ($sendto as $senduser) { |
|
|
|
|
|
// Check user is allowed to receive warningemails. |
|
|
|
|
|
if (has_capability('mod/attendance:warningemails', $context, $senduser)) { |
|
|
if (empty($thirdpartynotifications[$senduser])) { |
|
|
if (empty($thirdpartynotifications[$senduser])) { |
|
|
$thirdpartynotifications[$senduser] = array(); |
|
|
$thirdpartynotifications[$senduser] = array(); |
|
|
} |
|
|
} |
|
|
if (!isset($thirdpartynotifications[$senduser][$record->aid . '_' . $record->userid])) { |
|
|
if (!isset($thirdpartynotifications[$senduser][$record->aid . '_' . $record->userid])) { |
|
|
$thirdpartynotifications[$senduser][$record->aid . '_' . $record->userid] = get_string('thirdpartyemailtext', 'attendance', $record); |
|
|
$thirdpartynotifications[$senduser][$record->aid . '_' . $record->userid] = get_string('thirdpartyemailtext', 'attendance', $record); |
|
|
} |
|
|
} |
|
|
|
|
|
} else { |
|
|
|
|
|
mtrace("user".$senduser. "does not have capablity in cm".$record->cmid); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|