API16

Difference between revisions of "JLDAP/bind"

From Joomla! Documentation

< API16:JLDAP
(New page: ===Description=== Binds to the LDAP directory <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span>...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Binds to the LDAP directory
 
Binds to the LDAP directory
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JLDAP/bind|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JLDAP/bind}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 55: Line 53:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JLDAP/bind|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JLDAP/bind}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=bind
 
  category=bind
 
  category=JLDAP
 
  category=JLDAP
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:51, 24 March 2017

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 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 transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]