Home
last modified time | relevance | path

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

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/RequestHandler/
H A DProxyRequestHandler.php17 use FreeDSx\Ldap\LdapClient;
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);
16 use FreeDSx\Ldap\LdapClient; global() alias
/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;
25 /** @var LdapClient */
47 $this->ldap = new LdapClient($this->config);
10 use FreeDSx\Ldap\LdapClient; global() alias
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DPaging.php20 use FreeDSx\Ldap\LdapClient;
37 * @var LdapClient
62 * @param LdapClient $client
66 public function __construct(LdapClient $client, SearchRequest $search, int $size = 1000)
18 use FreeDSx\Ldap\LdapClient; global() alias
H A DRangeRetrieval.php20 use FreeDSx\Ldap\LdapClient;
31 * @var LdapClient
36 * @param LdapClient $client
38 public function __construct(LdapClient $client)
18 use FreeDSx\Ldap\LdapClient; global() alias
H A DDirSync.php22 use FreeDSx\Ldap\LdapClient;
71 * @var LdapClient
81 * @param LdapClient $client
86 public function __construct(LdapClient $client, ?string $namingContext = null, ?FilterInterface $filter = null, ...$attributes)
19 use FreeDSx\Ldap\LdapClient; global() alias
H A DVlv.php23 use FreeDSx\Ldap\LdapClient;
36 * @var LdapClient
81 * @param LdapClient $client
87 public function __construct(LdapClient $client, SearchRequest $search, $sort, int $after = 100, int $before = 0)
20 use FreeDSx\Ldap\LdapClient; global() alias
/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 time.
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/
H A DReferralChaserInterface.php40 * Construct the LdapClient with the options you want, and perform other tasks (such as StartTLS)
43 * @return LdapClient
45 public function client(array $options): LdapClient;
H A DLdapClient.php41 class LdapClient
38 class LdapClient global() class
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientReferralHandler.php20 use FreeDSx\Ldap\LdapClient;
146 $client = $referralChaser !== null ? $referralChaser->client($options) : new LdapClient($options);
18 use FreeDSx\Ldap\LdapClient; global() alias