mirror of
https://github.com/moodle/moodle.git
synced 2025-02-11 11:13:05 +01:00
0f093efab2
It's not at all well-tested yet (I made a lot of changes to it just tonight) but it's late and I am literally sick (with flu) and tired so I'm checking this in and going to bed. Please fix all the bugs for me. ;-)
23 lines
939 B
PHP
23 lines
939 B
PHP
<?PHP // $Id$
|
|
|
|
$string['enrolname'] = 'Flat file';
|
|
|
|
$string['description'] = 'This method will repeatedly check for and process a specially-formatted text file in the location that you specify. The file can look something like this:
|
|
<pre>
|
|
add, student, 5, CF101
|
|
add, teacher, 6, CF101
|
|
add, teacheredit, 7, CF101
|
|
del, student, 8, CF101
|
|
del, student, 17, CF101
|
|
add, student, 21, CF101, 1091115000, 1091215000
|
|
</pre>
|
|
';
|
|
|
|
$string['filelockedmailsubject'] = 'Important error: Enrolment file';
|
|
$string['filelockedmail'] = 'The text file you are using for file-based enrolments ($a) can not be deleted by the cron process. This usually means the permissions are wrong on it. Please fix the permissions so that Moodle can delete the file, otherwise it might be processed repeatedly.';
|
|
$string['location'] = 'File location';
|
|
$string['mailusers'] = 'Notify users by email';
|
|
$string['mailadmin'] = 'Notify admin by email';
|
|
|
|
?>
|