mirror of
https://github.com/moodle/moodle.git
synced 2025-02-11 11:13:05 +01:00
19 lines
1012 B
PHP
19 lines
1012 B
PHP
<?PHP // $Id$
|
|
// enrol_database.php - created with Moodle 1.4 aiming-for-beta-soon (2004082100)
|
|
|
|
|
|
$string['dbhost'] = 'ホスト名';
|
|
$string['dbname'] = 'データベース名';
|
|
$string['dbpass'] = 'パスワード';
|
|
$string['dbtable'] = 'テーブル名';
|
|
$string['dbtype'] = 'データベースタイプ';
|
|
$string['dbuser'] = 'ユーザ名';
|
|
$string['description'] = 'ユーザ登録に外部のデータベース(殆どの種類)を使用することが出来ます。外部データベースにはコースID及びユーザIDを含んでいる必要があります。これらはローカルなコーステーブル及びユーザテーブルのフィールドと比較されます。';
|
|
$string['enrolname'] = '外部データベース';
|
|
$string['localcoursefield'] = 'コーステーブルのフィールド名と比較するリモートデータベースのフィールド名(例 idnumber)';
|
|
$string['localuserfield'] = 'ユーザテーブルのフィールド名と比較するリモートデータベースのフィールド名(例 idnumber)';
|
|
$string['remotecoursefield'] = 'course IDに対するリモートデータベースのフィールド名';
|
|
$string['remoteuserfield'] = 'user IDに対するリモートデータベースのフィールド名';
|
|
|
|
?>
|