Home
last modified time | relevance | path

Searched refs:deleteOldRdn (Results 1 – 3 of 3) sorted by path

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapClient.php236 * @param bool $deleteOldRdn argument
240 public function rename($dn, $newRdn, bool $deleteOldRdn = true): LdapMessageResponse
242 return $this->sendAndReceive(Operations::rename($dn, $newRdn, $deleteOldRdn));
H A DOperations.php181 public static function rename(string $dn, $rdn, bool $deleteOldRdn = true): ModifyDnRequest
183 return new ModifyDnRequest($dn, $rdn, $deleteOldRdn);
177 rename(string $dn, $rdn, bool $deleteOldRdn = true) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DModifyDnRequest.php54 protected $deleteOldRdn;
64 * @param bool $deleteOldRdn
67 public function __construct($dn, $newRdn, bool $deleteOldRdn, $newParentDn = null)
72 $this->deleteOldRdn = $deleteOldRdn;
118 return $this->deleteOldRdn;
122 * @param bool $deleteOldRdn
125 public function setDeleteOldRdn(bool $deleteOldRdn)
127 $this->deleteOldRdn = $deleteOldRdn;
50 protected $deleteOldRdn; global() variable in FreeDSx\\Ldap\\Operation\\Request\\ModifyDnRequest
63 __construct($dn, $newRdn, bool $deleteOldRdn, $newParentDn = null) global() argument
121 setDeleteOldRdn(bool $deleteOldRdn) global() argument
[all...]