Home
last modified time | relevance | path

Searched refs:result (Results 26 – 50 of 68) sorted by relevance

123

/dokuwiki/lib/plugins/authldap/
H A Dauth.php213 $result = @ldap_get_entries($this->con, $sr);
215 // if result is not an array
216 if (!is_array($result)) {
218 $this->debug('LDAP search returned non-array result: ' . hsc(print($result)), -1, __LINE__, __FILE__);
223 if ($result['count'] != 1) {
225 'LDAP search returned ' . hsc($result['count']) . ' results while it should return 1!',
230 //for($i = 0; $i < $result["count"]; $i++) {
231 //$this->_debug('result: '.hsc(print_r($result[
[all...]
/dokuwiki/inc/Extension/
H A DEvent.php23 public $result;
134 $this->result = call_user_func_array($action, [&$this->data]);
139 return $this->result;
22 public $result = null; global() variable in dokuwiki\\Extension\\Event
/dokuwiki/inc/Search/
H A DIndexer.php385 $result = $this->deletePageNoLock($page);
389 return $result;
616 $result = [];
617 $wids = $this->getIndexWords($tokens, $result);
630 // merge found pages into final result array
632 foreach ($result as $word => $res) {
720 // initialize the result so it won't be null
721 $result = [];
723 $result[$val] = [];
733 $result[
749 getIndexWords(& $words, & $result) global() argument
[all...]
/dokuwiki/lib/scripts/
H A Dfileuploaderextended.js21 onComplete: function(id, fileName, result){ argument
22 self._onComplete(id, fileName, result);
23 self._options.onComplete(id, fileName, result);
157 _onComplete: function(id, fileName, result){ argument
174 if (result.success){
176 $link = '<a href="' + result.link + '" id="h_:' + result.id + '" class="select">' + nameInput.value + '</a>';
182 if (result.error) qq.setText(fail, result.error);
190 button += '<input type="hidden" value="' + result
[all...]
H A Dfileuploader.js169 var result = [];
175 result.push(candidates[i]);
178 return result;
189 * will result in:
333 onComplete: function(id, fileName, result){ argument
334 self._onComplete(id, fileName, result);
335 self._options.onComplete(id, fileName, result);
363 _onComplete: function(id, fileName, result){
365 if (result.error){
366 this._options.showMessage(result
612 AnonymousFunctionc6e2ab791200(id, fileName, result) global() argument
[all...]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPContacts.php91 $result = @ldap_add($this->adldap->getLdapConnection(), "CN=" . $this->adldap->utilities()->escapeCharacters($add["cn"][0]) . ", " . $container . "," . $this->adldap->getBaseDn(), $add);
92 if ($result != true) {
225 $result = ldap_modify($this->adldap->getLdapConnection(), $distinguishedName, $mod);
226 if ($result == false) {
241 $result = $this->folder()->delete($distinguishedName);
242 if ($result != true) {
H A DadLDAPUsers.php119 $result = @ldap_add($this->adldap->getLdapConnection(), "CN=" . $add["cn"][0] . ", " . $container . "," . $this->adldap->getBaseDn(), $add);
120 if ($result != true) {
175 $result = $this->adldap->folder()->delete($dn);
176 if ($result != true) {
427 $result = @ldap_modify($this->adldap->getLdapConnection(), $userDn, $mod);
428 if ($result == false) {
446 $result = $this->modify($username, $attributes, $isGUID);
447 if ($result == false) { return false; }
463 $result = $this->modify($username, $attributes, $isGUID);
464 if ($result
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRandom.php181 $result = '';
182 while (strlen($result) < $length) {
186 $result .= $r;
189 return substr($result, 0, $length);
H A DRC2.php396 $result = parent::encrypt($plaintext);
398 return $result;
418 $result = parent::decrypt($ciphertext);
420 return $result;
H A DBase.php
H A DHash.php576 // NH hash and add bit-length. Concatenate the result to Y.
1427 // Add this chunk's hash to result so far
/dokuwiki/vendor/simplepie/simplepie/src/
H A DRegistry.php260 $result = @call_user_func_array([$class, 'create'], $parameters);
261 return $result;
267 $result = call_user_func_array([$class, $method], $parameters);
268 return $result;
/dokuwiki/inc/Remote/
H A DXmlRpcServer.php53 $result = $this->remote->call($methodname, $args);
54 return $result;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php1005 $result = [];
1008 $result[] = $relativeDir . $value;
1014 $result = array_merge($result, $temp);
1016 $result[] = $relativeDir . $value;
1020 return $result;
1225 $result = strcasecmp($a['filename'], $b['filename']);
1226 if ($result) {
1227 return $order === SORT_DESC ? -$result : $result;
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php300 $result = $this->sftp->get($this->path, false, $this->pos, $count);
302 if ($result === false) {
307 call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($result), $this->size);
310 if (empty($result)) { // ie. false or empty string
314 $this->pos += strlen($result);
316 return $result;
332 $result = $this->sftp->put($this->path, $data, SFTP::SOURCE_STRING, $this->pos);
334 if (!$result) {
342 if ($result === false) {
/dokuwiki/inc/
H A Dpageutils.php527 $result = [];
529 if (!$pathA[0]) $result[] = '';
532 if (end($result) == '..') {
533 $result[] = '..';
534 } elseif (!array_pop($result)) {
535 $result[] = '..';
538 $result[] = $dir;
541 if (!end($pathA)) $result[] = '';
542 $id = implode(':', $result);
H A DTaskRunner.php153 // sort the final result, it shouldn't be necessary,
221 $result = Mapper::generate() && Mapper::pingSearchEngines();
223 return $result;
H A DAjax.php298 $result = [
311 $result = ['error' => $error, 'ns' => $NS];
315 echo json_encode($result, JSON_THROW_ON_ERROR);
376 // result contains matches in pages and namespaces
386 // it is a matching page, add it to the result
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php568 // the input chars and putting the result into the output array
651 $result = array();
652 $result[] = (int) $this->_lbase + $sindex / $this->_ncount;
653 $result[] = (int) $this->_vbase + ($sindex % $this->_ncount) / $this->_tcount;
655 if ($T != $this->_tbase) $result[] = $T;
656 return $result;
669 $result = array();
671 $result[] = $last; // copy first char from input to output
684 $result[(count($result)
[all...]
/dokuwiki/lib/plugins/extension/helper/
H A Dgui.php123 $result = $repository->search($INPUT->str('q'));
135 if ($result) {
136 foreach ($result as $name) {
H A Dextension.php1023 $result = ['old' => [], 'new' => []];
1025 if (!$this->findFolders($result, $tmp . '/' . $base, $default)) {
1029 // choose correct result array
1030 if (count($result['new'])) {
1031 $install = $result['new'];
1033 $install = $result['old'];
1106 * in the 'new' key of the $result array.
1109 * in the 'old' key of the $result array.
1115 * @param array $result - results are stored here
1121 protected function findFolders(&$result,
1102 findFolders(& $result, $directory, $default_type = 'plugin', $subdir = '') global() argument
[all...]
/dokuwiki/lib/plugins/extension/
H A Dcli.php275 $result = $repository->search($query);
277 $result = array_slice($result, 0, $max);
280 $this->listExtensions($result, $showdetails);
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php61 /** Use no line numbers when building the result */
63 /** Use normal line numbers when building the result */
65 /** Use fancy line numbers when building the result */
397 * If null, nl2br() will be used on the result string.
2175 $result = $this->hsc($this->source);
2179 $result = str_replace(array('<SEMI>', '<PIPE>'), array(';', '|'), $result);
2183 $this->finalise($result);
2184 return $result;
2445 $result
3121 indent(& $result) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1465 * An intermediate cert that linked to itself would result in an infinite loop so to prevent
1732 $result = [];
1762 $result[] = $v;
1766 return $result;
1840 $result = '';
1859 $result .= ASN1::encodeDER($rdn, Maps\RelativeDistinguishedName::MAP);
1861 return $result;
1874 $result = [];
1944 $result[$desc] = isset($result[
[all...]
/dokuwiki/vendor/geshi/geshi/
H A DBUGS12 will result in malformed XHTML (not sure about this one though...)
18 - The result is built by string replacement instead of by building another string based

123