JLDAP/bind: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m clean up |
||
| Line 2: | Line 2: | ||
Binds to the LDAP directory | Binds to the LDAP directory | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
| Line 55: | Line 53: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
Revision as of 14:11, 24 March 2017
Description
Binds to the LDAP directory
<! removed transcluded page call, red link never existed >
Syntax
bind($username=null, $password=null, $nosub=0)
| Parameter Name | Default Value | Description |
|---|---|---|
| $username | null | The username |
| $password | null | The password |
| $nosub | 0 |
Returns
boolean Result public
Defined in
libraries/joomla/client/ldap.php
Importing
jimport( 'joomla.client.ldap' );
Source Body
function bind($username = null, $password = null, $nosub = 0)
{
if (is_null($username)) {
$username = $this->username;
}
if (is_null($password)) {
$password = $this->password;
}
$this->setDN($username,$nosub);
//if (strlen($this->getDN()))
$bindResult = @ldap_bind($this->_resource, $this->getDN(), $password);
return $bindResult;
}
<! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />