/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/ |
H A D | CompareRequest.php | 37 protected $dn; variable in FreeDSx\\Ldap\\Operation\\Request\\CompareRequest 45 * @param string|Dn $dn 48 public function __construct($dn, EqualityFilter $filter) argument 50 $this->setDn($dn); 59 return $this->dn; 63 * @param string|Dn $dn 66 public function setDn($dn) argument 68 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn); 100 $dn = $type->getChild(0); 103 if (!$dn instanceof OctetStringType || $ava === null) { [all …]
|
H A D | DeleteRequest.php | 33 protected $dn; variable in FreeDSx\\Ldap\\Operation\\Request\\DeleteRequest 36 * @param string $dn 38 public function __construct($dn) argument 40 $this->setDn($dn); 44 * @param string|Dn $dn 47 public function setDn($dn) argument 49 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn); 59 return $this->dn; 67 return Asn1::application(self::APP_TAG, Asn1::octetString($this->dn->toString()));
|
H A D | ModifyRequest.php | 51 protected $dn; variable in FreeDSx\\Ldap\\Operation\\Request\\ModifyRequest 54 * @param string $dn 57 public function __construct($dn, Change ...$changes) argument 59 $this->setDn($dn); 83 * @param string|Dn $dn 86 public function setDn($dn) argument 88 $this->dn = $dn instanceof $dn ? $dn : new Dn($dn); 98 return $this->dn; 110 $dn = $type->getChild(0); 121 return new self($dn->getValue(), ...$changeList); [all …]
|
H A D | ModifyDnRequest.php | 40 protected $dn; variable in FreeDSx\\Ldap\\Operation\\Request\\ModifyDnRequest 58 * @param string|Dn $dn 63 public function __construct($dn, $newRdn, bool $deleteOldRdn, $newParentDn = null) argument 65 $this->setDn($dn); 76 return $this->dn; 80 * @param string|Dn $dn 83 public function setDn($dn) argument 85 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn); 184 Asn1::octetString($this->dn->toString()),
|
H A D | AddRequest.php | 91 $dn = $type->getChild(0); 93 if (!($dn instanceof OctetStringType && $attrList instanceof SequenceType)) { 96 $dn = new Dn($dn->getValue()); 124 return new self(new Entry($dn, ...$attributes));
|
H A D | DnRequestInterface.php | 23 * @param string|Dn $dn 26 public function setDn($dn); argument
|
H A D | SearchRequest.php | 150 * @param string|Dn|null $dn 153 public function base($dn) argument 155 return $this->setBaseDn($dn);
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/ |
H A D | Dn.php | 26 protected $dn; variable in FreeDSx\\Ldap\\Entry\\Dn 34 * @param string $dn 36 public function __construct(string $dn) argument 38 $this->dn = $dn; 84 return $this->dn; 104 return $this->dn; 121 * @param string $dn 124 public static function isValid(string $dn): bool argument 127 (new self($dn))->toArray(); 140 if ($this->dn === '') { [all …]
|
H A D | Entry.php | 28 protected $dn; variable in FreeDSx\\Ldap\\Entry\\Entry 36 * @param string|Dn $dn 39 public function __construct($dn, Attribute ...$attributes) argument 41 $this->dn = $dn instanceof Dn ? $dn : new Dn($dn); 184 return $this->dn; 231 return $this->dn->toString(); 260 * @param string $dn 264 public static function create(string $dn, array $attributes = []): Entry argument 266 return self::fromArray($dn, $attributes); 272 * @param string $dn [all …]
|
H A D | Entries.php | 85 * @param string $dn 88 public function get(string $dn): ?Entry argument 91 if ($entry->getDn()->toString() === $dn) {
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/ |
H A D | LdapResult.php | 97 protected $dn; variable in FreeDSx\\Ldap\\Operation\\LdapResult 109 …public function __construct(int $resultCode, string $dn = '', string $diagnosticMessage = '', Ldap… argument 112 $this->dn = new Dn($dn); 130 return $this->dn; 156 Asn1::octetString($this->dn), 176 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type); 178 return new static($resultCode, $dn, $diagnosticMessage, ...$referrals); 216 $dn = $type->getChild(1); 218 if ($result === null || $dn === null || $diagnostic === null) { 224 $dn->getValue(),
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/ |
H A D | Operations.php | 115 public static function compare(string $dn, string $attributeName, string $value): CompareRequest argument 117 return new CompareRequest($dn, Filters::equal($attributeName, $value)); 123 public static function delete(string $dn): DeleteRequest argument 125 return new DeleteRequest($dn); 141 public static function modify(string $dn, Change ...$changes): ModifyRequest argument 143 return new ModifyRequest($dn, ...$changes); 149 public static function move(string $dn, string $newParentDn): ModifyDnRequest argument 151 $dnObj = new Dn($dn); 153 return new ModifyDnRequest($dn, $dnObj->getRdn()->toString(), true, $newParentDn); 177 public static function rename(string $dn, $rdn, bool $deleteOldRdn = true): ModifyDnRequest argument [all …]
|
H A D | LdapUrl.php | 52 protected $dn; variable in FreeDSx\\Ldap\\LdapUrl 80 * @param null|string|Dn $dn 83 public function setDn($dn) argument 85 $this->dn = $dn === null ? $dn : new Dn($dn); 92 return $this->dn; 252 return $url . '/' . self::encode($this->dn) . $this->getQueryString();
|
H A D | LdapClient.php | 118 public function compare($dn, string $attributeName, string $value, Control ...$controls): bool argument 121 …$response = $this->sendAndReceive(Operations::compare($dn, $attributeName, $value), ...$controls)-… 217 * @param string|Entry $dn 222 public function move($dn, $newParentDn): LdapMessageResponse argument 224 return $this->sendAndReceive(Operations::move($dn, $newParentDn)); 230 * @param string|Entry $dn 236 public function rename($dn, $newRdn, bool $deleteOldRdn = true): LdapMessageResponse argument 238 return $this->sendAndReceive(Operations::rename($dn, $newRdn, $deleteOldRdn));
|
/plugin/webdavclient/ |
H A D | admin.php | 87 $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 D | X509.php | 163 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 D | ADClient.php | 119 foreach ($groupDNs as $dn) { 120 $groupDNs = array_merge($groupDNs, $gch->getChildren($dn)); 126 foreach ($groupDNs as $dn) { 128 if ($this->dn2group($dn) === $this->config['primarygroup']) { 133 $or->add(Filters::equal('memberOf', $dn)); 262 foreach ($groupDNs as $dn) { 263 $groupDNs = array_merge($groupDNs, $gch->getParents($dn)); 299 * @param string $dn 302 protected function dn2group($dn) argument 304 list($cn) = explode(',', $dn, 2);
|
H A D | GroupHierarchyCache.php | 87 $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 D | SearchResultEntry.php | 65 $dn = $type->getChild(0); 66 if ($dn === null) { 88 new Dn($dn->getValue()),
|
H A D | BindResponse.php | 74 [$resultCode, $dn, $diag, $ref] = self::parseResultData($type); 85 return new self(new LdapResult($resultCode, $dn, $diag, ...$ref), $saslCreds);
|
H A D | ExtendedResponse.php | 144 [$resultCode, $dn, $diagnosticMessage, $referrals] = self::parseResultData($type); 146 return new LdapResult($resultCode, $dn, $diagnosticMessage, ...$referrals);
|
/plugin/loglog/lang/cs/ |
H A D | intro.txt | 3 …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 D | viewer.properties | 6 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 D | auth.php | 103 $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 D | wast.min.js.map | 1 …dn]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…
|