]>
Commit | Line | Data |
---|---|---|
1 | <?php | |
2 | if (!defined("_ECRIRE_INC_VERSION")) return; | |
3 | $GLOBALS['ldap_base'] = getenv("SPIP_LDAP_BASE"); | |
4 | $GLOBALS['ldap_link'] = @ldap_connect(getenv("SPIP_LDAP_HOST")); | |
5 | @ldap_set_option($GLOBALS['ldap_link'],LDAP_OPT_PROTOCOL_VERSION,'3'); | |
6 | @ldap_bind($GLOBALS['ldap_link'],getenv("SPIP_LDAP_SEARCH_DN"), getenv("SPIP_LDAP_SEARCH_PW")); | |
7 | $GLOBALS['ldap_champs'] = array('login' => array('sAMAccountName','uid','login','userid','cn','sn'),'nom' => 'cn','email' => 'mail','bio' => 'description',); | |
8 | $GLOBALS['ldap_search'] = getenv("SPIP_LDAP_SEARCH"); | |
9 | ?> |