mirror of
https://github.com/moodle/moodle.git
synced 2025-02-19 07:41:02 +01:00
20 lines
891 B
PHP
20 lines
891 B
PHP
<?PHP // $Id$
|
|
// enrol_database.php - created with Moodle 1.4.1+ (2004083101)
|
|
|
|
|
|
$string['dbhost'] = '資料庫主機';
|
|
$string['dbname'] = '資料庫名稱';
|
|
$string['dbpass'] = '資料庫密碼';
|
|
$string['dbtable'] = '資料表';
|
|
$string['dbtype'] = '資料庫型式';
|
|
$string['dbuser'] = '使用者';
|
|
$string['description'] = '你可以使用外部資料庫來控制你的選課, 假設你有一個名部資料庫包含 course ID,user ID. 它可以與本地的課程和使用者欄位對照';
|
|
$string['enrolname'] = '外部資料庫';
|
|
$string['localcoursefield'] = '我們用來對照遠端資料庫的課程資料表的欄位';
|
|
$string['localuserfield'] = '我們用來對照遠端資料庫的使用者資料表的欄位';
|
|
$string['remotecoursefield'] = '我們要尋找課程id的遠端資料庫';
|
|
$string['remoteuserfield'] = '我們要尋找使用者id的遠端資料庫';
|
|
|
|
|
|
?>
|