Home
last modified time | relevance | path

Searched refs:dn (Results 1 – 25 of 70) sorted by relevance

123

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DCompareRequest.php40 protected $dn;
48 * @param string|Dn $dn argument
51 public function __construct($dn, EqualityFilter $filter)
53 $this->setDn($dn);
62 return $this->dn;
66 * @param string|Dn $dn argument
69 public function setDn($dn)
71 $this->dn = $dn instanceof Dn ? $dn
37 protected $dn; global() variable in FreeDSx\\Ldap\\Operation\\Request\\CompareRequest
[all...]
H A DDeleteRequest.php34 protected $dn;
37 * @param string|Dn $dn
39 public function __construct($dn)
41 $this->setDn($dn);
45 * @param string|Dn $dn
48 public function setDn($dn)
50 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn);
33 protected $dn; global() variable in FreeDSx\\Ldap\\Operation\\Request\\DeleteRequest
38 __construct($dn) global() argument
47 setDn($dn) global() argument
[all...]
H A DModifyRequest.php54 protected $dn;
57 * @param string|Dn $dn argument
60 public function __construct($dn, Change ...$changes)
62 $this->setDn($dn);
86 * @param string|Dn $dn argument
89 public function setDn($dn)
91 $this->dn = $dn instanceof $dn ? $dn
51 protected $dn; global() variable in FreeDSx\\Ldap\\Operation\\Request\\ModifyRequest
[all...]
H A DModifyDnRequest.php44 protected $dn;
62 * @param string|Dn $dn
67 public function __construct($dn, $newRdn, bool $deleteOldRdn, $newParentDn = null)
69 $this->setDn($dn);
80 return $this->dn;
84 * @param string|Dn $dn
87 public function setDn($dn)
89 $this->dn = $dn instanceof Dn ? $dn
40 protected $dn; global() variable in FreeDSx\\Ldap\\Operation\\Request\\ModifyDnRequest
63 __construct($dn, $newRdn, bool $deleteOldRdn, $newParentDn = null) global() argument
83 setDn($dn) global() argument
[all...]
H A DAddRequest.php95 $dn = $type->getChild(0);
97 if (!($dn instanceof OctetStringType && $attrList instanceof SequenceType)) {
100 $dn = new Dn($dn->getValue());
128 return new self(new Entry($dn, ...$attributes));
H A DDnRequestInterface.php24 * @param string|Dn $dn
27 public function setDn($dn);
26 setDn($dn) global() argument
H A DSearchRequest.php152 * @param string|Dn|null $dn
155 public function base($dn)
157 return $this->setBaseDn($dn);
153 base($dn) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DDn.php36 protected $dn; argument
44 * @param string $dn
46 public function __construct(string $dn)
48 $this->dn = $dn;
98 return $this->dn;
120 return $this->dn;
138 * @param string $dn
141 public static function isValid(string $dn): bool
144 (new self($dn))
26 protected $dn; global() variable in FreeDSx\\Ldap\\Entry\\Dn
124 isValid(string $dn) global() argument
[all...]
H A DEntry.php36 protected $dn;
44 * @param string|Dn $dn
47 public function __construct($dn, Attribute ...$attributes)
49 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn);
192 return $this->dn;
241 return $this->dn->toString();
270 * @param string $dn
28 protected $dn; global() variable in FreeDSx\\Ldap\\Entry\\Entry
39 __construct($dn, Attribute...$attributes) global() argument
264 create(string $dn, array $attributes = []) global() argument
276 fromArray(string $dn, array $attributes = []) global() argument
[all...]
H A DEntries.php94 * @param string $dn
97 public function get(string $dn): ?Entry
100 if ($entry->getDn()->toString() === $dn) {
88 get(string $dn) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/
H A DLdapResult.php101 protected $dn;
113 public function __construct(int $resultCode, string $dn = '', string $diagnosticMessage = '', LdapUrl ...$referrals)
116 $this->dn = new Dn($dn);
134 return $this->dn;
161 Asn1::octetString($this->dn),
183 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type);
185 return new static($resultCode, $dn, $diagnosticMessage, ...$referrals);
225 $dn = $type->getChild(1);
227 if ($result === null || $dn
97 protected $dn; global() variable in FreeDSx\\Ldap\\Operation\\LdapResult
109 __construct(int $resultCode, string $dn = '', string $diagnosticMessage = '', LdapUrl...$referrals) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DOperations.php117 public static function compare(string $dn, string $attributeName, string $value): CompareRequest
119 return new CompareRequest($dn, Filters::equal($attributeName, $value));
125 public static function delete(string $dn): DeleteRequest
127 return new DeleteRequest($dn);
143 public static function modify(string $dn, Change ...$changes): ModifyRequest
145 return new ModifyRequest($dn, ...$changes);
153 public static function move(string $dn, string $newParentDn): ModifyDnRequest
155 $dnObj = new Dn($dn);
157 return new ModifyDnRequest($dn, $dnObj->getRdn()->toString(), true, $newParentDn);
181 public static function rename(string $dn,
115 compare(string $dn, string $attributeName, string $value) global() argument
123 delete(string $dn) global() argument
141 modify(string $dn, Change...$changes) global() argument
149 move(string $dn, string $newParentDn) global() argument
177 rename(string $dn, $rdn, bool $deleteOldRdn = true) global() argument
[all...]
H A DLdapUrl.php66 protected $dn;
94 * @param null|string|Dn $dn
97 public function setDn($dn)
99 $this->dn = $dn === null ? $dn : new Dn($dn);
106 return $this->dn;
267 return $url . '/' . self::encode($this->dn) . $this->getQueryString();
52 protected $dn; global() variable in FreeDSx\\Ldap\\LdapUrl
83 setDn($dn) global() argument
H A DLdapClient.php115 * @param string|Dn $dn
122 public function compare($dn, string $attributeName, string $value, Control ...$controls): bool
125 $response = $this->sendAndReceive(Operations::compare($dn, $attributeName, $value), ...$controls)->getResponse();
221 * @param string|Entry $dn
226 public function move($dn, $newParentDn): LdapMessageResponse
228 return $this->sendAndReceive(Operations::move($dn, $newParentDn));
234 * @param string|Entry $dn
240 public function rename($dn, $newRdn, bool $deleteOldRdn = true): LdapMessageResponse
242 return $this->sendAndReceive(Operations::rename($dn, $newRdn, $deleteOldRdn));
118 compare($dn, string $attributeName, string $value, Control...$controls) global() argument
222 move($dn, $newParentDn) global() argument
236 rename($dn, $newRdn, bool $deleteOldRdn = true) global() argument
/plugin/webdavclient/
H A Dadmin.php87 $dn = $_REQUEST['moddn'][$connid];
92 $this->hlp->modifyConnection($connid, $permission, $dn, $syncinterval, $write, $active);
97 $dn = $_REQUEST['mandn'];
101 … $this->hlp->addConnection($uri, $username, $password, $dn, $dn, $type, '3600', false, false);
188 foreach($this->result['calendars'] as $href => $dn)
192 '<input type="hidden" name="calendardn['.$idx.']" value="'.$dn.'">'.
193 hsc($dn).'</td><td>'.hsc($href).'</td></tr>');
202 foreach($this->result['addressbooks'] as $href => $dn)
206 '<input type="hidden" name="addressbookdn['.$idx.']" value="'.$dn.'">'.
207 hsc($dn).'</td><td>'.hsc($href).'</td></tr>');
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php163 private $dn; variable in phpseclib3\\File\\X509
1721 $dn = &$this->dn['rdnSequence'];
1729 $dn = array_values($dn);
1732 $dn = array_splice($dn, 0, 0);
1747 if (!isset($dn)) {
1748 $dn = $this->dn;
1751 if (empty($dn)) {
1763 $dn = $dn['rdnSequence'];
1801 * @param mixed $dn
1815 $this->dn = $dn; // No merge here.
[all …]
/plugin/pureldap/classes/
H A DADClient.php173 foreach ($groupDNs as $dn) {
174 $groupDNs = array_merge($groupDNs, $gch->getChildren($dn));
180 foreach ($groupDNs as $dn) {
182 if ($this->dn2group($dn) === $this->config['primarygroup']) {
187 $or->add(Filters::equal('memberOf', $dn));
295 'dn' => $entry->getDn()->toString(),
333 foreach ($groupDNs as $dn) {
334 $groupDNs = array_merge($groupDNs, $gch->getParents($dn));
421 * @param string $dn
424 protected function dn2group($dn)
302 dn2group($dn) global() argument
[all...]
H A DGroupHierarchyCache.php87 $dn = (string)$entry->getDn();
88 $groups[$dn] = [];
91 $groups[$dn]['parents'] = $parents;
93 $groups[$parent]['children'][] = $dn;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultEntry.php67 $dn = $type->getChild(0);
68 if ($dn === null) {
90 new Dn($dn->getValue()),
H A DBindResponse.php83 [$resultCode, $dn, $diag, $ref] = self::parseResultData($type);
93 return new self(new LdapResult($resultCode, $dn, $diag, ...$ref), $saslCreds);
H A DExtendedResponse.php155 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type);
157 return new LdapResult($resultCode, $dn, $diagnosticMessage, ...$referrals);
/plugin/loglog/lang/cs/
H A Dintro.txt3 …uje všechna přihlášení a odhlášení uživatelů z posledních 7 dnů. Pro zobrazení starších týdnů lze …
/plugin/pdfjs/pdfjs/web/locale/csb/
H A Dviewer.properties6 previous.title=Pòprzédnô strona
7 previous_label=Pòprzédnô
8 next.title=Nôslédnô strona
9 next_label=Nôslédnô
35 find_previous.title=Biéj do pòprzédnégò wënikù szëkbë
37 find_next.title=Biéj do nôslédnégò wënikù szëkbë
/plugin/authldaplocal/
H A Dauth.php103 $dn = $this->_makeFilter(
110 $dn = $this->_makeFilter(
125 if(!empty($dn)) {
127 if(!@ldap_bind($this->con, $dn, $pass)) {
128 $this->_debug("LDAP: bind with $dn failed", -1, __LINE__, __FILE__);
140 $dn = $info['dn'];
144 if(!@ldap_bind($this->con, $dn, $pass)) {
145 $this->_debug("LDAP: bind with $dn failed", -1, __LINE__, __FILE__);
/plugin/codemirror/dist/modes/
H A Dwast.min.js.map1dn]d|c[lt]z|(div|rem)_[su]|eqz?|[gl][te]_[su]|mul|ne|popcnt|rot[lr]|sh(l|r_[su])|sub|x?or)|i64\\.e…

123