Home
last modified time | relevance | path

Searched refs:key (Results 76 – 100 of 116) sorted by relevance

12345

/dokuwiki/
H A Dinstall.php248 foreach ($license as $key => $lic) {
249 echo '<label for="lic_' . $key . '">';
250 echo '<input type="radio" name="d[license]" value="' . hsc($key) . '" id="lic_' . $key . '"' .
251 (($d['license'] === $key) ? ' checked="checked"' : '') . '>';
H A Dfeed.php38 $key = implode('$', [
44 $cache = new Cache($key, '.feed');
37 $key = join('', array_values($opt)) . '$' . $INPUT->server->str('REMOTE_USER') global() variable
/dokuwiki/inc/
H A Ddeprecated.php66 public function __construct($key, array $params = null)
69 parent::__construct($key, $params);
80 public function __construct($key, array $params = null)
83 parent::__construct($key, $params);
94 public function __construct($key, array $params = null)
97 parent::__construct($key, $params);
64 __construct($key, array $params = null) global() argument
78 __construct($key, array $params = null) global() argument
92 __construct($key, array $params = null) global() argument
H A Dfulltext.php620 foreach ($args[0] as $key => $value) {
621 $result[$key] = $value;
623 if (!isset($args[$i][$key])) {
624 unset($result[$key]);
627 $result[$key] += $args[$i][$key];
918 foreach (['words', 'phrases', 'highlight', 'ns', 'notns', 'and', 'not'] as $key) {
919 $q[$key] = empty($q[$key]) ? [] : array_values(array_unique($q[$key]));
[all...]
H A Dconfutils.php149 [$key, $val] = sexplode('=', $line, 2, '');
150 $key = trim($key);
152 $versions[$key] = $val;
300 * @param string $type the configuration settings to be read, must correspond to a key/array in $config_cascade
336 * @param string $type the configuration settings to be read, must correspond to a key/array in $config_cascade
H A Dhtml.php188 * If tooltip exists, the access key tooltip is replaced.
194 * @param string $akey access key
195 * @param string[] $params key-value pairs added as hidden inputs
226 foreach ($params as $key => $val) {
227 $html .= '<input type="hidden" name="' . $key . '" value="' . hsc($val) . '" />';
973 if (is_array($params)) foreach ($params as $key => $val) {
974 $out .= ' <param name="' . hsc($key) . '" value="' . hsc($val) . '" />' . NL;
/dokuwiki/lib/plugins/config/
H A Dadmin.php284 * @param string $key
287 public function addLang($key, $value)
290 $this->lang[$key] = $value;
278 addLang($key, $value) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php27 * $key = \phpseclib3\Crypt\PublicKeyLoader::load('...', '(optional) password');
30 * if (!$ssh->login('username', $key)) {
63 use phpseclib3\Crypt\TripleDES; // Used to do Diffie-Hellman key exchange and DSA/RSA signature verification.
274 * some servers (eg. Azure) will support rsa-sha2-512 as a server host key algorithm but
275 * not a private key algorithm
528 * "The exchange hash H from the first key exchange is additionally
985 * Send the key exchange initiation packet first?
992 * Some versions of OpenSSH incorrectly calculate the key size
1274 * https://tools.ietf.org/html/rfc4253#section-7.1 says "key exchange begins by each sending
1287 * https://tools.ietf.org/html/rfc4253#section-7.1 says "key exchang
[all...]
H A DSFTP.php608 list($key, $value) = Strings::unpackSSH2('ss', $response);
609 $this->extensions[$key] = $value;
1046 foreach ($files as $key => $value) {
1047 if ($depth != 0 && $key == '..') {
1048 unset($files[$key]);
1052 if ($key != '.' && $key != '..') {
1054 $is_directory = is_array($this->query_stat_cache($this->realpath($dir . '/' . $key)));
1056 $stat = $this->lstat($dir . '/' . $key);
1063 $files[$key]
3250 _parseTime($key, $flags, & $response) global() argument
[all...]
H A DSSH1.php
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUtils.php233 public function encode8Bit(&$item, $key) { argument
242 if ($encode === true && $key != 'password') {
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php94 foreach ($headers as $key => $value) {
95 $headers2[] = "$key: $value";
180 foreach ($headers as $key => $value) {
181 $out .= "$key: $value\r\n";
H A DMisc.php135 foreach ($element['attribs'] as $key => $value) {
136 $key = strtolower($key);
137 $full .= " $key=\"" . htmlspecialchars($value['data'], ENT_COMPAT, 'UTF-8') . '"';
211 foreach ($array2 as $key => $value) {
213 $array1[$key] = Misc::array_merge_recursive($array1[$key], $value);
215 $array1[$key] = $value;
H A DLocator.php326 foreach ($array as $key => $value) {
340 unset($array[$key]);
349 foreach ($array as $key => $value) {
362 unset($array[$key]);
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php321 foreach ($context as $key => $val) {
324 $replace['{' . $key . '}'] = $val;
/dokuwiki/lib/scripts/
H A Dfileuploaderextended.js223 for (key in this._inputs) {
224 this.upload(key, params);
340 for (key in this._files) {
341 this.upload(key, params);
/dokuwiki/bin/
H A Ddwpage.php136 'key',
189 $key = trim(array_shift($args));
190 $meta = p_get_metadata($wiki_id, $key, METADATA_RENDER_UNLIMITED);
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php128 $cmd = key($fn);
129 $param = is_array($fn[$cmd]) ? key($fn[$cmd]) : null;
553 * @param string $key name of search field
556 protected function htmlFilter($key)
559 return (isset($this->filter[$key]) ? hsc($this->filter[$key]) : '');
572 foreach ($this->filter as $key => $filter) {
573 echo '<input type="hidden" name="filter[' . $key . ']" value="' . hsc($filter) . '" />';
552 htmlFilter($key) global() argument
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php865 [$key, $value] = sexplode('=', trim($line, DOKU_LF), 2, '');
866 $key = trim($key);
869 if ($key == 'url') $key = 'downloadurl';
870 $this->managerData[$key] = $value;
1106 * in the 'new' key of the $result array.
1109 * in the 'old' key of the $result array.
/dokuwiki/lib/exe/
H A Dcss.php279 foreach ((array)$replacements as $key => $value) {
280 $lkey = trim($key, '_');
284 $replacements[$key] = $lkey;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRijndael.php12 * {@link self::setKey() setKey()}. ie. if the key is 128-bits, the key length will be 128-bits. If it's
13 * 136-bits it'll be null-padded to 192-bits and 192 bits will be the key length until
16 * Not all Rijndael implementations may support 160-bits or 224-bits as the block length / key length. mcrypt, for example,
17 * does not. AES, itself, only supports block lengths of 128 and key lengths of 128, 192, and 256.
19 * algorithm for block lengths of 192 and 256 but not for block lengths / key lengths of 160 and 224. Indeed, 160 and 224
20 * are first defined as valid key / block lengths in
104 * because the encryption / decryption / key schedule creation requires this number and not $block_size. We could
117 * because the encryption / decryption / key schedule creation requires this number and not $key_length. We could
152 * Holds the last used key
[all...]
/dokuwiki/lib/plugins/authad/
H A Dauth.php700 if ($domain && is_array($this->conf[$domain] ?? '')) foreach ($this->conf[$domain] as $key => $val) {
701 $opts[$key] = $val;
742 * The default domain has an empty string as key
744 * @return array associative array(key => domain)
755 foreach ($this->conf as $key => $val) {
757 $domains[$key] = ltrim($val['account_suffix'], '@');
/dokuwiki/inc/parser/
H A Dhandler.php173 * $options is parsed for key value pairs separated by commas.
178 * @param string $options space separated list of key-value pairs,
180 * @return array|null Array of key-value pairs $array['key'] = 'value';
190 $key = trim($match[0]);
191 $result [$key] = 1;
193 $key = substr($match[0], 0, $equal_sign);
197 $result [$key] = $value;
199 $result [$key] = 1;
/dokuwiki/lib/plugins/authplain/
H A Dauth.php397 foreach (array_keys($protected) as $key) {
398 $protected[$key]['protected'] = true;
/dokuwiki/vendor/kissifrot/php-ixr/
H A DREADME.md11 The Incutio XML-RPC library (IXR) is designed primarily for ease of use. It incorporates both client and server classes, and is designed to hide as much of the workings of XML-RPC from the user as possible. A key feature of the library is automatic type conversion from PHP types to XML-RPC types and vice versa. This should enable developers to write web services with very little knowledge of the underlying XML-RPC standard.

12345