API15:JLDAP/setDN
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Sets the DN with some template replacements
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 = ''; } }
[Edit See Also] SeeAlso:JLDAP/setDN
Examples
<CodeExamplesForm />
