API16

JLDAP/setDN

From Joomla! Documentation

< API16:JLDAP
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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]

Sets the DN with some template replacements


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

Syntax[edit]

setDN($username, $nosub=0)
Parameter Name Default Value Description
$username The username public
$nosub 0

Defined in[edit]

libraries/joomla/client/ldap.php

Importing[edit]

jimport( 'joomla.client.ldap' );

Source Body[edit]

function setDN($username,$nosub = 0)
{
        if ($this->users_dn == '' || $nosub) {
                $this->_dn = $username;
        } else if (strlen($username)) {
                $this->_dn = str_replace('[username]', $username, $this->users_dn);
        } else {
                $this->_dn = '';
        }
}


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

Examples[edit]

Code Examples[edit]