API15:JLDAP/setDN
From Joomla! Documentation
Description
Sets the DN with some template replacements
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
setDN($username, $nosub=0)
| Parameter Name | Default Value | Description |
|---|---|---|
| $username | The username public | |
| $nosub | 0 |
Defined in
libraries/joomla/client/ldap.php
Importing
jimport( 'joomla.client.ldap' );
Source Body
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 edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples