Home
last modified time | relevance | path

Searched refs:LdapClient (Results 1 – 15 of 15) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/
H A DProxyRequestHandler.php17 use FreeDSx\Ldap\LdapClient; alias
38 * @var LdapClient|null
121 * @param LdapClient $client
123 public function setLdapClient(LdapClient $client): void
129 * @return LdapClient
131 protected function ldap(): LdapClient
134 $this->ldap = new LdapClient($this->options);
H A DProxyPagingHandler.php14 use FreeDSx\Ldap\LdapClient; alias
28 * @var LdapClient
38 * @param LdapClient $client
40 public function __construct(LdapClient $client)
H A DProxyHandler.php16 use FreeDSx\Ldap\LdapClient; alias
28 public function __construct(LdapClient $client)
/plugin/pureldap/classes/
H A DGroupHierarchyCache.php7 use FreeDSx\Ldap\LdapClient; alias
18 /** @var LdapClient */
27 * @param LdapClient $ldap
30 public function __construct(LdapClient $ldap, $usefs)
H A DClient.php13 use FreeDSx\Ldap\LdapClient; alias
25 /** @var LdapClient */
47 $this->ldap = new LdapClient($this->config);
/plugin/pureldap/vendor/freedsx/ldap/
H A DCHANGELOG.md17 * When setting the options on the LdapClient you can now choose to force a disconnect at the same t…
45 * Add a "rename()" convenience method to the LdapClient.
46 * Add a "move()" convenience method to the LdapClient.
50 * Calling the LdapClient "read()" method with no arguments will now return the RootDSE by default.
60 * Add a create convenience method to the LdapClient to create a single LDAP entry.
61 * Add a read convenience method to the LdapClient to return a single LDAP entry.
62 * Add an update convenience method to the LdapClient to update a single LDAP entry.
63 * Add a delete convenience method to the LdapClient to delete a single LDAP entry.
82 * Add a compare() operation method helper to the LdapClient.
H A DREADME.md39 Use the LdapClient class and the helper classes:
42 use FreeDSx\Ldap\LdapClient;
46 $ldap = new LdapClient([
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DPaging.php20 use FreeDSx\Ldap\LdapClient; alias
37 * @var LdapClient
62 * @param LdapClient $client
66 public function __construct(LdapClient $client, SearchRequest $search, int $size = 1000)
H A DRangeRetrieval.php20 use FreeDSx\Ldap\LdapClient; alias
31 * @var LdapClient
36 * @param LdapClient $client
38 public function __construct(LdapClient $client)
H A DDirSync.php22 use FreeDSx\Ldap\LdapClient; alias
71 * @var LdapClient
81 * @param LdapClient $client
86 …public function __construct(LdapClient $client, ?string $namingContext = null, ?FilterInterface $f…
H A DVlv.php23 use FreeDSx\Ldap\LdapClient; alias
36 * @var LdapClient
81 * @param LdapClient $client
87 …public function __construct(LdapClient $client, SearchRequest $search, $sort, int $after = 100, in…
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DReferralChaserInterface.php43 * @return LdapClient
45 public function client(array $options): LdapClient;
H A DLdapServer.php179 $client = new LdapClient(array_merge([
H A DLdapClient.php41 class LdapClient class
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientReferralHandler.php20 use FreeDSx\Ldap\LdapClient; alias
146 … $client = $referralChaser !== null ? $referralChaser->client($options) : new LdapClient($options);