Home
last modified time | relevance | path

Searched refs:toString (Results 201 – 225 of 737) sorted by last modified time

12345678910>>...30

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DDeleteRequest.php68 return Asn1::application(self::APP_TAG, Asn1::octetString($this->dn->toString()));
H A DModifyDnRequest.php189 Asn1::octetString($this->dn->toString()),
191 Asn1::octetString($this->newRdn->toString()),
195 $asn1->addChild(Asn1::context(0, Asn1::octetString($this->newParentDn->toString())));
H A DAddRequest.php150 Asn1::octetString($this->entry->getDn()->toString()),
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultEntry.php112 $asn1->addChild(Asn1::octetString($this->entry->getDn()->toString()));
H A DSearchResultReference.php80 return Asn1::octetString($ref->toString());
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DOperations.php157 return new ModifyDnRequest($dn, $dnObj->getRdn()->toString(), true, $newParentDn);
H A DLdapUrlExtension.php113 public function toString(): string
129 return $this->toString();
108 public function toString(): string global() function in FreeDSx\\Ldap\\LdapUrlExtension
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Factory/
H A DResponseFactory.php55 $response = new AddResponse($resultCode, $request->getEntry()->getDn()->toString(), $diagnostic);
57 $response = new CompareResponse($resultCode, $request->getDn()->toString(), $diagnostic);
59 $response = new DeleteResponse($resultCode, $request->getDn()->toString(), $diagnostic);
61 $response = new ModifyDnResponse($resultCode, $request->getDn()->toString(), $diagnostic);
63 $response = new ModifyResponse($resultCode, $request->getDn()->toString(), $diagnostic);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DReferralContext.php65 if (strtolower($referral->toString()) === strtolower($url->toString())) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DAttributeValueAssertionTrait.php82 public function toString(): string
79 public function toString(): string global() function
H A DFilterAttributeTrait.php50 return $this->toString();
H A DFilterContainerTrait.php118 public function toString(): string
124 return $filter->toString();
153 return $this->toString();
113 public function toString(): string global() function
H A DFilterInterface.php62 public function toString(): string;
61 public function toString(): string; global() function
H A DMatchingRuleFilter.php173 public function toString(): string
194 return $this->toString();
171 public function toString(): string global() function in FreeDSx\\Ldap\\Search\\Filter\\MatchingRuleFilter
H A DNotFilter.php76 public function toString(): string
80 . $this->filter->toString()
89 return $this->toString();
73 public function toString(): string global() function in FreeDSx\\Ldap\\Search\\Filter\\NotFilter
H A DPresentFilter.php52 public function toString(): string
50 public function toString(): string global() function in FreeDSx\\Ldap\\Search\\Filter\\PresentFilter
H A DSubstringFilter.php173 public function toString(): string
171 public function toString(): string global() function in FreeDSx\\Ldap\\Search\\Filter\\SubstringFilter
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DRangeRetrieval.php149 $result->getDn()->toString()
175 $entry->getDn()->toString()
/plugin/pureldap/classes/
H A DADClient.php54 $this->debug('Searching ' . $filter->toString(), __FILE__, __LINE__);
122 $this->debug('Searching ' . $filter->toString(), __FILE__, __LINE__);
137 $groups[$entry->getDn()->toString()] = $this->cleanGroup($this->attr2str($entry->get('cn')));
192 $this->debug('Searching ' . $filter->toString(), __FILE__, __LINE__);
295 'dn' => $entry->getDn()->toString(),
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DAttribute.php163 return $this->getName() . ($this->options()->count() > 0 ? ';' . $this->options()->toString() : '');
253 return $nameMatches && ($this->getOptions()->toString(true) === $attribute->getOptions()->toString(true));
H A DOptions.php136 public function toString(bool $sortedlc = false): string
145 $options .= ($options === '') ? $option->toString($sortedlc) : ';' . $option->toString($sortedlc);
165 return $this->toString();
128 public function toString(bool $sortedlc = false): string global() function in FreeDSx\\Ldap\\Entry\\Options
H A DDn.php96 public function toString(): string
82 public function toString(): string global() function in FreeDSx\\Ldap\\Entry\\Dn
H A DEntries.php83 if ((string) $entry === $entryObj->getDn()->toString()) {
100 if ($entry->getDn()->toString() === $dn) {
H A DRdn.php95 public function toString(): string
111 return $this->toString();
86 public function toString(): string global() function in FreeDSx\\Ldap\\Entry\\Rdn
/plugin/pureldap/vendor/freedsx/ldap/
H A DCHANGELOG.md81 * Added a toString() method on filters for displaying their string filter representation.

12345678910>>...30