mirror of
https://github.com/moodle/moodle.git
synced 2025-08-11 03:46:42 +02:00
MDL-35843 implement self enrolment expiry notification
This commit is contained in:
parent
8c04252cbf
commit
8a486fdb7d
10 changed files with 374 additions and 6 deletions
|
@ -46,6 +46,18 @@ $string['enrolstartdate'] = 'Start date';
|
|||
$string['enrolstartdate_help'] = 'If enabled, users can enrol themselves from this date onward only.';
|
||||
$string['expiredaction'] = 'Enrolment expiration action';
|
||||
$string['expiredaction_help'] = 'Select action to carry out when user enrolment expires. Please note that some user data and settings are purged from course during course unenrolment.';
|
||||
$string['expirymessageenrollersubject'] = 'Self enrolment expiry notification';
|
||||
$string['expirymessageenrollerbody'] = 'Self enrolment in the course \'{$a->course}\' will expire within the next {$a->threshold} for the following users:
|
||||
|
||||
{$a->users}
|
||||
|
||||
To extend their enrolment, go to {$a->extendurl}';
|
||||
$string['expirymessageenrolledsubject'] = 'Self enrolment expiry notification';
|
||||
$string['expirymessageenrolledbody'] = 'Dear {$a->user},
|
||||
|
||||
This is a notification that your enrolment in the course \'{$a->course}\' is due to expire on {$a->timeend}.
|
||||
|
||||
If you need help, please contact {$a->enroller}.';
|
||||
$string['groupkey'] = 'Use group enrolment keys';
|
||||
$string['groupkey_desc'] = 'Use group enrolment keys by default.';
|
||||
$string['groupkey_help'] = 'In addition to restricting access to the course to only those who know the key, use of a group enrolment key means users are automatically added to the group when they enrol in the course.
|
||||
|
@ -56,6 +68,7 @@ $string['longtimenosee_help'] = 'If users haven\'t accessed a course for a long
|
|||
$string['maxenrolled'] = 'Max enrolled users';
|
||||
$string['maxenrolled_help'] = 'Specifies the maximum number of users that can self enrol. 0 means no limit.';
|
||||
$string['maxenrolledreached'] = 'Maximum number of users allowed to self-enrol was already reached.';
|
||||
$string['messageprovider:expiry_notification'] = 'Self enrolment expiry notifications';
|
||||
$string['nopassword'] = 'No enrolment key required.';
|
||||
$string['password'] = 'Enrolment key';
|
||||
$string['password_help'] = 'An enrolment key enables access to the course to be restricted to only those who know the key.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue