1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 17:14:42 +02:00

alt_auth update - feature complete

This commit is contained in:
e107steved
2008-12-23 20:31:30 +00:00
parent 7c70ee283a
commit 61eb377350
9 changed files with 256 additions and 113 deletions

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/alt_auth/languages/English/admin_alt_auth.php,v $
| $Revision: 1.1 $
| $Date: 2008-12-09 20:40:54 $
| $Revision: 1.2 $
| $Date: 2008-12-23 20:31:30 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
@@ -88,7 +88,13 @@ define('LAN_ALT_66', 'This plugin allows for alternate authentication methods.')
define('LAN_ALT_67', 'Configure Alt auth');
define('LAN_ALT_68', 'Alt auth service is now set up. You will now need to configure your preferred method.');
define('LAN_ALT_69', '');
define('LAN_ALT_70', '');
define('LAN_ALT_70', 'None');
define('LAN_ALT_71', 'TRUE/FALSE');
define('LAN_ALT_72', 'Upper case');
define('LAN_ALT_73', 'Lower case');
define('LAN_ALT_74', 'Upper first');
define('LAN_ALT_75', 'Upper words');
define('LAN_ALT_FALLBACK', 'Use e107 user table');
define('LAN_ALT_FAIL', 'Failed login');
@@ -99,8 +105,19 @@ define('LAN_ALT_AUTH_HELP', 'These are the settings common to all authentication
The Extended User Field selection determines which <i>may</i> be added/updated when a user logs in - further configuration is required
for the specific authentication method.');
define('LAN_ALT_VALIDATE_HELP', 'You can check the settings by using the \'Test Database Access\' section to try and validate a user - this uses exactly
the same process as when a user tries to log in, and confirms whether your settings are correct
the same process as when a user tries to log in, and confirms whether your settings are correct.<br />
If you have configured some parameters to be copied to the user table on successful login, these are also listed.
');
define('LAN_ALT_COPY_HELP', 'You can select fields to copy from the remote database into the user database by entering the appropriate names.<br /><br />
');
define('LAN_ALT_CONVERSION_HELP', 'For some fields, the drop-down box to the right of the field entry box selects a conversion which may be applied to the value
read from the remote database; if \'none\' is selected, the value is copied as received. Conversions are:<br />
<b>TRUE/FALSE</b> - the words \'TRUE\' and \'FALSE\' (and their lower/mixed case equivalents) are converted to the Booleans 1 and zero.<br />
<b>Upper case</b> - All letters are converted to upper case<br />
<b>Lower case</b> - All letters are converted to lower case<br />
<b>Upper first</b> - the first character is converted to upper case<br />
<b>Upper words</b> - the first letter of each word is converted to upper case<br />
<br />
<br />');
?>

View File

@@ -15,6 +15,8 @@ define("LDAPLAN_13", 'Update settings');
define('LDAPLAN_14', 'OU for AD (e.g. ou=itdept)');
define('SHOW_COPY_HELP', TRUE);
define('SHOW_CONVERSION_HELP', TRUE);
define('LAN_AUTHENTICATE_HELP','This method can be used to authenticate against most LDAP servers, including Novell\'s eDirectory and Microsoft\'s Active Directory. Refer to the wiki for further information.');

View File

@@ -26,6 +26,8 @@ define("IMPORTDB_LAN_8", 'E107 salted (option 0.8 on)');
define("IMPORTDB_LAN_12", 'PHPBB2/PHPBB3 salted');
define('SHOW_COPY_HELP', TRUE);
define('SHOW_CONVERSION_HELP', TRUE);
define('LAN_AUTHENTICATE_HELP','This authentication method is used to validate against a non-E107 database. The password must be stored in one of the supported formats.');