mirror of
https://github.com/moodle/moodle.git
synced 2025-02-20 16:15:54 +01:00
56 lines
2.5 KiB
PHP
56 lines
2.5 KiB
PHP
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Strings for component 'enrol_flatfile', language 'en', branch 'MOODLE_20_STABLE'
|
|
*
|
|
* @package enrol
|
|
* @subpackage flatfile
|
|
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$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['filelockedmailsubject'] = 'Important error: Enrolment file';
|
|
$string['location'] = 'File location';
|
|
$string['mailadmin'] = 'Notify admin by email';
|
|
$string['mailstudents'] = 'Notify students by email';
|
|
$string['mailteachers'] = 'Notify teachers by email';
|
|
$string['mapping'] = 'Flat file mapping';
|
|
$string['pluginname'] = 'Flat file (CSV)';
|
|
$string['pluginname_desc'] = 'This method will repeatedly check for and process a specially-formatted text file in the location that you specify.
|
|
The file is a comma separated file assumed to have four or six fields per line:
|
|
<pre class="informationbox">
|
|
* operation, role, idnumber(user), idnumber(course) [, starttime, endtime]
|
|
where:
|
|
* operation = add | del
|
|
* role = student | teacher | teacheredit
|
|
* idnumber(user) = idnumber in the user table NB not id
|
|
* idnumber(course) = idnumber in the course table NB not id
|
|
* starttime = start time (in seconds since epoch) - optional
|
|
* endtime = end time (in seconds since epoch) - optional
|
|
</pre>
|
|
It could look something like this:
|
|
<pre class="informationbox">
|
|
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>';
|