123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?php
- $extldap_config = array(
-
- 'base_dn' => 'DC=cblue,DC=be',
-
- 'admin_dn' => 'CN=admin,dc=cblue,dc=be',
-
- 'admin_password' => 'pass',
-
- 'host' => array('1.2.3.4', '2.3.4.5', '3.4.5.6'),
-
-
-
- 'protocol_version' => 3,
-
- 'referrals' => 0,
-
-
- 'user_search' => 'uid=%username%',
-
- 'encoding' => 'UTF-8',
-
- 'update_userinfo' => true
- );
- $extldap_user_correspondance = array(
- 'firstname' => 'givenName',
- 'lastname' => 'sn',
- 'status' => 'func',
- 'admin' => 'func',
- 'email' => 'mail',
- 'auth_source' => '!extldap',
-
- 'language' => '!english',
- 'password' => '!PLACEHOLDER',
- 'extra' => array(
- 'title' => 'title',
- 'globalid' => 'employeeID',
- 'department' => 'department',
- 'country' => 'co',
- 'bu' => 'Company')
- );
- $langMainInfo = 'You may login to this site using an OpenID. You may add your OpenId URLs below, and also see a list of any OpenIDs which have already been added.';
- $langMainInfoDetail = '<p>OpenID is a secure way to use one user ID and password to log in to many web sites without special software, giving the same password to each site, or losing control over which information is shared with each site that you visit.</p>';
- $langMainInfoDetail .= '<p>Users can create accounts using their OpenID, assign one or more OpenIDs to an existing account, and log in using an OpenID. This lowers the barrier to registration, which is good for the site, and offers convenience and security to the users. Logging in via OpenID is far more secure than cross-site logins using drupal.module.</p>';
- $langMainInfoDetail .= '<p>More information on OpenID is available at <a href="http://openid.net">OpenID.net</a></p>';
|