API16

Difference between revisions of "JLDAP/remove"

From Joomla! Documentation

< API16:JLDAP
(New page: ===Description=== Removes attribute value from given dn and return a true or false result <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JLDAP/remov...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JLDAP/remove|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JLDAP/remove}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 44: Line 44:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JLDAP/remove|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JLDAP/remove}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 59: Line 59:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 22:04, 13 May 2013

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]

Removes attribute value from given dn and return a true or false result

[<! removed edit link to red link >]

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

Syntax[edit]

remove($dn, $attribute)
Parameter Name Default Value Description
$dn dn The DN which contains the attribute you want to remove
$attribute attribute The attribute values you want to remove

Returns[edit]

mixed result of comparison (true, false, -1 on error)

Defined in[edit]

libraries/joomla/client/ldap.php

Importing[edit]

jimport( 'joomla.client.ldap' );

Source Body[edit]

function remove($dn, $attribute)
{
        $resource = $this->_resource;
        return @ldap_mod_del($resource, $dn, $attribute);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />