mirror of
https://github.com/moodle/moodle.git
synced 2025-02-02 14:19:07 +01:00
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';
|
|
|
|
?>
|