Home
last modified time | relevance | path

Searched refs:key (Results 51 – 75 of 116) sorted by relevance

12345

/dokuwiki/lib/plugins/config/core/
H A DLoader.php215 foreach ($meta as $key => $value) {
217 $data[$prefix . $key] = $value;
244 foreach ($conf as $key => $value) {
245 $data[$prefix . $key] = $value;
276 foreach ($lang as $key => $val) {
277 $strings[$prefix . $key] = $val;
280 // add fieldset key
H A DConfigParser.php17 /** @var string the key to mark sub arrays */
51 $key = preg_replace('/.\]\[./', $this->keymarker, $matches[$i][1]);
69 $config[$key] = $value;
/dokuwiki/inc/Parsing/Handler/
H A DLists.php82 $key = key($this->listStack);
98 $this->listStack[$key][2] = count($this->listCalls) - 2;
119 $this->listCalls[$this->listStack[$key][2]][1][1] = self::NODE;
132 $key = key($this->listStack);
145 $this->listStack[$key][2] = count($this->listCalls) - 2;
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSource.php125 public function get_category($key = 0) argument
128 if (isset($categories[$key])) {
129 return $categories[$key];
179 public function get_author($key = 0) argument
182 if (isset($authors[$key])) {
183 return $authors[$key];
243 public function get_contributor($key = 0) argument
246 if (isset($contributors[$key])) {
247 return $contributors[$key];
298 public function get_link($key argument
[all...]
H A DSimplePie.php1444 * Set element/attribute key/value pairs of HTML attributes
1452 * @param array|null $element_attribute Element/attribute key/value pairs, null for default
2352 * @param int $key The category that you want to return. Remember that arrays begin with 0, not 1
2355 public function get_category($key = 0) argument
2358 if (isset($categories[$key])) {
2359 return $categories[$key];
2421 * @param int $key The author that you want to return. Remember that arrays begin with 0, not 1
2424 public function get_author($key = 0) argument
2427 if (isset($authors[$key])) {
2428 return $authors[$key];
2503 get_contributor($key = 0) global() argument
2574 get_link($key = 0, $rel = 'alternate') global() argument
2970 get_item($key = 0) global() argument
[all...]
H A DItem.php391 * @param int $key The category that you want to return. Remember that arrays begin with 0, not 1
394 public function get_category($key = 0) argument
397 if (isset($categories[$key])) {
398 return $categories[$key];
463 * @param int $key The author that you want to return. Remember that arrays begin with 0, not 1
466 public function get_author($key = 0) argument
469 if (isset($authors[$key])) {
470 return $authors[$key];
480 * @param int $key The contrbutor that you want to return. Remember that arrays begin with 0, not 1
483 public function get_contributor($key argument
826 get_link($key = 0, $rel = 'alternate') global() argument
908 get_enclosure($key = 0, $prefer = null) global() argument
[all...]
/dokuwiki/inc/ChangeLog/
H A DRevisionInfo.php55 * set value of associated "current" key for internal use. Some UI element like diff
68 * Return or set a value of associated key of revision information
71 * @param string $key
75 public function val($key, $value = null)
77 if (isset($value) && !array_key_exists($key, $this->info)) {
79 $this->info[$key] = $value;
81 if (array_key_exists($key, $this->info)) {
83 return $this->info[$key];
89 * Set extra key-value to the revision information
96 foreach ($info as $key
73 val($key, $value = null) global() argument
[all...]
/dokuwiki/inc/
H A Dcache.php14 public function __construct($key, $ext)
17 parent::__construct($key, $ext);
13 __construct($key, $ext) global() argument
H A DPassHash.php372 $key = substr($salt, 16, 2);
373 $hash1 = strtolower(md5($key . md5($clear)));
374 $hash2 = substr($hash1, 0, 16) . $key . substr($hash1, 16);
815 * @param string $key Shared secret key used for generating the HMAC variant of the message digest.
819 public static function hmac($algo, $data, $key, $raw_output = false)
823 return hash_hmac($algo, $data, $key, $raw_output);
832 if (strlen($key) > $size) {
833 $key = str_pad(pack($pack, $algo($key)),
796 hmac($algo, $data, $key, $raw_output = false) global() argument
[all...]
H A DMailer.class.php81 * @param string $embed Unique key to reference this file from the HTML part
103 * @param string $embed Unique key to reference this file from the HTML part
227 foreach ($textrep as $key => $value) {
228 if (isset($htmlrep[$key])) continue;
230 $htmlrep[$key] = '<a href="' . hsc($value) . '">' . hsc($value) . '</a>';
232 $htmlrep[$key] = hsc($value);
248 foreach ($trep as $key => $substitution) {
249 $text = str_replace('@' . strtoupper($key) . '@', $substitution, $text);
251 foreach ($hrep as $key => $substitution) {
252 $html = str_replace('@' . strtoupper($key)
586 wrappedHeaderLine($key, $val) global() argument
[all...]
H A Dindexer.php348 foreach (array_keys($filter) as $key) {
349 if (file_exists($path . $key . '.idx'))
350 $idx[] = $key;
364 * Clean a name of a key for use as a file name.
H A DStyleUtils.php178 * @param array $replacements with key-value pairs
184 foreach ($replacements as $key => $value) {
185 $replacements[$key] = preg_replace(
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php149 * Public key
156 * Private key
482 $key = $x509['tbsCertificate']['subjectPublicKeyInfo'];
483 $key = ASN1::encodeDER($key, Maps\SubjectPublicKeyInfo::MAP);
486 chunk_split(base64_encode($key), 64) .
641 foreach ($extensions as $key => $value) {
643 $extensions[$key] = $newext;
984 If the keyUsage extension is present, then the subject public key
994 The cA boolean indicates whether the certified public key ma
2505 _reformatKey($algorithm, $key) global() argument
3127 setPublicKey($key) global() argument
3141 setPrivateKey($key) global() argument
4058 _sign($key, $signatureAlgorithm) global() argument
4685 computeKeyIdentifier($key = null, $method = 1) global() argument
[all...]
H A DASN1.php538 foreach ($mapping['children'] as $key => $option) {
551 if (isset($special[$key])) {
552 $value = $special[$key]($value);
554 return [$key => $value];
597 foreach ($mapping['children'] as $key => $child) {
635 if (isset($special[$key])) {
636 $candidate = $special[$key]($candidate);
638 $map[$key] = $candidate;
641 $map[$key] = $child['default'];
673 foreach ($mapping['children'] as $key
[all...]
/dokuwiki/inc/Ui/
H A DMediaDiff.php288 foreach ($rev1Tags as $key => $tag) {
289 if ($tag['value'] != $rev2Tags[$key]['value']) {
290 $rev2Tags[$key]['highlighted'] = true;
291 $rev1Tags[$key]['highlighted'] = true;
292 } elseif (!$tag['value'] || !$rev2Tags[$key]['value']) {
293 unset($rev2Tags[$key]);
294 unset($rev1Tags[$key]);
H A DSearch.php130 foreach ($options as $key => $option) {
133 if ($key === $activeOption) {
240 foreach ($options as $key => $option) {
242 $activeOption = $key;
263 foreach ($options as $key => $option) {
266 if ($key === $activeOption) {
405 foreach ($options as $key => $option) {
407 $activeOption = $key;
424 foreach ($options as $key => $option) {
427 if ($key
[all...]
H A DSubscribe.php92 $INPUT->str('sub_target') : key($targets);
102 $INPUT->str('sub_style') : key($styles);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php103 private $key = false;
208 * Sets the key for HMACs
212 * @param string $key
214 public function setKey($key = false)
216 $this->key = $key;
242 * Pre-compute the key used by the HMAC
245 * will first hash the key using H and then use the resultant L byte string as the actual key to HMAC."
254 if ($this->key
113 var $key = false; global() variable in phpseclib\\Crypt\\Hash
184 setKey($key = false) global() argument
[all...]
/dokuwiki/inc/Form/
H A DElement.php97 foreach ((array) $attributes as $key => $val) {
98 $this->attr($key, $val);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php189 $key = PublicKeyLoader::load($key_type . ' ' . base64_encode($key_blob));
192 if (isset($key)) {
194 ->withPublicKey($key)
197 unset($key);
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DFeedCreator.php58 * Any additional elements to include as an associated array. All $key => $value pairs
60 * <$key>$value</$key>
140 * @param array $elements an associative array containing key => value pairs
148 foreach ($elements AS $key => $value) {
149 $ae .= $indentString."<$key>$value</$key>\n";
/dokuwiki/inc/Action/
H A DExport.php105 if (is_array($data['headers'])) foreach ($data['headers'] as $key => $val) {
106 header("$key: $val");
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php97 foreach ($data as $key => $val) {
99 $string .= hsc($key) . "\t" . hsc($v) . "\n";
101 $string .= hsc($key) . "\t" . hsc($val) . "\n";
270 foreach ($d as $key => $value) {
271 $data['plugin_' . $plugin . '_' . $key] = $value;
/dokuwiki/lib/plugins/authldap/
H A Dauth.php250 foreach ($this->getConf('mapping') as $localkey => $key) {
251 if (is_array($key)) {
253 // $key = array($key=>$regexp), only handles the first key-value
254 $regexp = current($key);
255 $key = key($key);
256 if ($user_result[$key]) foreac
[all...]
/dokuwiki/inc/Extension/
H A DPluginTrait.php209 foreach ($defaults as $key => $value) {
210 if (isset($conf['plugin'][$plugin][$key])) continue;
211 $conf['plugin'][$plugin][$key] = $value;

12345