API15:JLDAP/delete
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
Deletes a given DN from the tree
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
delete($dn)
| Parameter Name | Default Value | Description |
|---|---|---|
| $dn | dn The DN of the object you want to delete |
Returns
bool result of operation public
Defined in
libraries/joomla/client/ldap.php
Importing
jimport( 'joomla.client.ldap' );
Source Body
function delete($dn) { return @ldap_delete($this->_resource, $dn); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
