API16

JLDAP/bind

From Joomla! Documentation

< API16:JLDAP
Revision as of 22:04, 13 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Binds to the LDAP directory

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

bind($username=null, $password=null, $nosub=0)
Parameter Name Default Value Description
$username null The username
$password null The password
$nosub 0

Returns[edit]

boolean Result public

Defined in[edit]

libraries/joomla/client/ldap.php

Importing[edit]

jimport( 'joomla.client.ldap' );

Source Body[edit]

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 edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />