API16:JLDAP/create
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
Create a new DN
Syntax
create($dn, $entries)
| Parameter Name | Default Value | Description |
|---|---|---|
| $dn | dn The DN where you want to put the object | |
| $entries | entries An array of arrays describing the object to add |
Returns
bool result of operation
Defined in
libraries/joomla/client/ldap.php
Importing
jimport( 'joomla.client.ldap' );
Source Body
function create($dn, $entries) { return @ldap_add($this->_resource, $dn, $entries); }
[Edit See Also] SeeAlso:JLDAP/create
Examples
<CodeExamplesForm />
