Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/auth/db/lang/en/auth_db.php
Go to the documentation of this file.
00001 <?php
00002 
00003 // This file is part of Moodle - http://moodle.org/
00004 //
00005 // Moodle is free software: you can redistribute it and/or modify
00006 // it under the terms of the GNU General Public License as published by
00007 // the Free Software Foundation, either version 3 of the License, or
00008 // (at your option) any later version.
00009 //
00010 // Moodle is distributed in the hope that it will be useful,
00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013 // GNU General Public License for more details.
00014 //
00015 // You should have received a copy of the GNU General Public License
00016 // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
00017 
00026 $string['auth_dbcantconnect'] = 'Could not connect to the specified authentication database...';
00027 $string['auth_dbdebugauthdb'] = 'Debug ADOdb';
00028 $string['auth_dbdebugauthdbhelp'] = 'Debug ADOdb connection to external database - use when getting empty page during login. Not suitable for production sites.';
00029 $string['auth_dbdeleteuser'] = 'Deleted user {$a->name} id {$a->id}';
00030 $string['auth_dbdeleteusererror'] = 'Error deleting user {$a}';
00031 $string['auth_dbdescription'] = 'This method uses an external database table to check whether a given username and password is valid.  If the account is a new one, then information from other fields may also be copied across into Moodle.';
00032 $string['auth_dbextencoding'] = 'External db encoding';
00033 $string['auth_dbextencodinghelp'] = 'Encoding used in external database';
00034 $string['auth_dbextrafields'] = 'These fields are optional.  You can choose to pre-fill some Moodle user fields with information from the <b>external database fields</b> that you specify here. <p>If you leave these blank, then defaults will be used.</p><p>In either case, the user will be able to edit all of these fields after they log in.</p>';
00035 $string['auth_dbfieldpass'] = 'Name of the field containing passwords';
00036 $string['auth_dbfieldpass_key'] = 'Password field';
00037 $string['auth_dbfielduser'] = 'Name of the field containing usernames';
00038 $string['auth_dbfielduser_key'] = 'Username field';
00039 $string['auth_dbhost'] = 'The computer hosting the database server.';
00040 $string['auth_dbhost_key'] = 'Host';
00041 $string['auth_dbchangepasswordurl_key'] = 'Password-change URL';
00042 $string['auth_dbinsertuser'] = 'Inserted user {$a->name} id {$a->id}';
00043 $string['auth_dbinsertusererror'] = 'Error inserting user {$a}';
00044 $string['auth_dbname'] = 'Name of the database itself';
00045 $string['auth_dbname_key'] = 'DB name';
00046 $string['auth_dbpass'] = 'Password matching the above username';
00047 $string['auth_dbpass_key'] = 'Password';
00048 $string['auth_dbpasstype'] = '<p>Specify the format that the password field is using. MD5 hashing is useful for connecting to other common web applications like PostNuke.</p> <p>Use \'internal\' if you want to the external DB to manage usernames &amp; email addresses, but Moodle to manage passwords. If you use \'internal\', you <i>must</i> provide a populated email address field in the external DB, and you must execute both admin/cron.php and auth/db/cli/sync_users.php regularly. Moodle will send an email to new users with a temporary password.</p>';
00049 $string['auth_dbpasstype_key'] = 'Password format';
00050 $string['auth_dbreviveduser'] = 'Revived user {$a->name} id {$a->id}';
00051 $string['auth_dbrevivedusererror'] = 'Error reviving user {$a}';
00052 $string['auth_dbsetupsql'] = 'SQL setup command';
00053 $string['auth_dbsetupsqlhelp'] = 'SQL command for special database setup, often used to setup communication encoding - example for MySQL and PostgreSQL: <em>SET NAMES \'utf8\'</em>';
00054 $string['auth_dbsuspenduser'] = 'Suspended user {$a->name} id {$a->id}';
00055 $string['auth_dbsuspendusererror'] = 'Error suspending user {$a}';
00056 $string['auth_dbsybasequoting'] = 'Use sybase quotes';
00057 $string['auth_dbsybasequotinghelp'] = 'Sybase style single quote escaping - needed for Oracle, MS SQL and some other databases. Do not use for MySQL!';
00058 $string['auth_dbtable'] = 'Name of the table in the database';
00059 $string['auth_dbtable_key'] = 'Table';
00060 $string['auth_dbtype'] = 'The database type (See the <a href="../lib/adodb/readme.htm#drivers">ADOdb documentation</a> for details)';
00061 $string['auth_dbtype_key'] = 'Database';
00062 $string['auth_dbupdatinguser'] = 'Updating user {$a->name} id {$a->id}';
00063 $string['auth_dbuser'] = 'Username with read access to the database';
00064 $string['auth_dbuser_key'] = 'DB user';
00065 $string['auth_dbusernotexist'] = 'Cannot update non-existent user: {$a}';
00066 $string['auth_dbuserstoadd'] = 'User entries to add: {$a}';
00067 $string['auth_dbuserstoremove'] = 'User entries to remove: {$a}';
00068 $string['pluginname'] = 'External database';
 All Data Structures Namespaces Files Functions Variables Enumerations