API17:JLDAP::rename
From Joomla! Documentation
(Difference between revisions)
(Bulk upload by Doxiki2) |
(Updated to r1448:247ba8d88526) |
||
| (One intermediate revision by one user not shown) | |||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JLDAP::rename|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JLDAP::rename|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public | + | public function rename ( |
| + | $dn | ||
| + | $newdn | ||
| + | $newparent | ||
| + | $deleteolddn | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 40: | Line 44: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' bool Result of operation | |
| − | bool Result of operation | + | * '''Defined''' on line 376 of libraries/joomla/client/ldap.php |
| − | + | ||
| − | libraries/joomla/client/ldap.php | + | |
| − | + | ||
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JLDAP::rename source code''' on [[jplatform:client/ldap.php#cl-368|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JLDAP/11.1|JLDAP]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Client/11.1|Client]] | ||
| + | * [[JLDAP::rename|Other versions of JLDAP::rename]] | ||
| + | {{SeeAlso:JLDAP::rename}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JLDAP::rename|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JLDAP::rename|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 60: | Line 63: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JLDAP]][[Category:JLDAP::rename]]</noinclude> | <noinclude>[[Category:JLDAP]][[Category:JLDAP::rename]]</noinclude> | ||
Revision as of 21:16, 27 April 2011
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.
JLDAP::rename
Description
Rename the entry.
Description:JLDAP::rename [Edit Descripton]
public function rename ( $dn $newdn $newparent $deleteolddn )
| Parameter | Type | Default | Description |
|---|---|---|---|
| $dn | string | dn The DN of the entry at the moment | |
| $newdn | string | newdn The DN of the entry should be (only cn=newvalue) | |
| $newparent | string | newparent The full DN of the parent (null by default) | |
| $deleteolddn | bool | deleteolddn Delete the old values (default) |
- Returns bool Result of operation
- Defined on line 376 of libraries/joomla/client/ldap.php
See also
-
JLDAP::rename source code on BitBucket
-
Class JLDAP
-
Subpackage Client
- Other versions of JLDAP::rename
SeeAlso:JLDAP::rename [Edit See Also]
User contributed notes
<CodeExamplesForm />
