Home
last modified time | relevance | path

Searched refs:data (Results 101 – 125 of 161) sorted by relevance

1234567

/dokuwiki/inc/
H A Dpageutils.php597 * Returns the name of a cachefile from given data
603 * @param string $data This data is used to create a unique md5 name
607 function getCacheName($data, $ext = '')
610 $md5 = md5($data);
626 $data = ['id' => $id, 'hidden' => false];
627 Event::createAndTrigger('PAGEUTILS_ID_HIDEPAGE', $data, '_isHiddenPage');
628 return $data['hidden'];
634 * @param array $data event data
601 getCacheName($data, $ext = '') global() argument
633 _isHiddenPage(& $data) global() argument
[all...]
H A Dparserutils.php125 $data = ['id' => $id, 'html' => ''];
127 $event = new Event('PARSER_LOCALE_XHTML', $data);
129 $data['html'] = p_cached_output(localeFN($data['id']));
133 return $data['html'];
303 // this timestamp is also stored when the meta data is still the same
331 * @param array $data is an array with key ⇒ value pairs to be set in the metadata
340 function p_set_metadata($id, $data, $render = false, $persistent = true) argument
342 if (!is_array($data)) return false;
346 // if there is currently a renderer change the data i
[all...]
H A Dauth.php78 // Note: with FastCGI, data is in REDIRECT_HTTP_AUTHORIZATION instead of HTTP_AUTHORIZATION
334 * Builds a pseudo UID from browser and IP data
427 * Encrypt data using the given secret using AES
432 * @param string $data The data that shall be encrypted
437 function auth_encrypt($data, $secret)
450 return $cipher->encrypt($iv . $data);
458 * @param string $ciphertext The encrypted data
460 * @return string|null The decrypted data
480 * This clears all authentication data an
367 auth_encrypt($data, $secret) global() argument
616 auth_aclcheck_cb($data) global() argument
[all...]
H A DMailer.class.php90 'data' => file_get_contents($path),
100 * @param string $data The file contents to attach
105 public function attachContent($data, $mime, $name = '', $embed = '')
113 'data' => $data,
364 * for headers. Addresses may not contain Non-ASCII data!
483 $mime .= chunk_split(base64_encode($media['data']), 74, MAILHEADER_EOL);
710 * Call this after all data was set
720 // prepare hook data
721 $data
99 attachContent($data, $mime, $name = '', $embed = '') global() argument
[all...]
/dokuwiki/inc/Input/
H A DInput.php44 * @param string $data
47 protected function applyfilter($data)
49 if (!$this->filter) return $data;
50 return call_user_func($this->filter, $data);
137 * This avoids copying data in memory, when the parameter is not set it will be created
48 applyfilter($data) global() argument
/dokuwiki/lib/plugins/popularity/lang/nl/
H A Dintro.txt5 U wordt verzocht deze stap van tijd tot tijd te herhalen om ontwikkelaars op de hoogte te houden terwijl uw wiki groeit. De herhaalde data zal worden geïdentificeerd door een uniek, anoniem ID.
9 De ruwe data die verzonden worden staan hieronder. Gebruik de knop "Verstuur" om de informatie te verzenden.
/dokuwiki/lib/plugins/popularity/lang/da/
H A Dintro.txt7 Opsamlede data indeholder oplysninger som eksempelvis din udgave af DokuWiki, antallet og størrelsen af dens sider, tilføjede udvidelser og oplysninger om din PHP-opsætning.
9 De egentlige data, som vil blive sendt, er vist herunder. Brug venligst knappen 'Send Data' for at videresende oplys (…)
/dokuwiki/lib/scripts/
H A Dqsearch.js96 * @param data The result HTML
98 onCompletion: function (data) { argument
104 if (data === '') {
110 .html(data)
/dokuwiki/inc/lang/no/
H A Ddraft.txt3 Din siste endring av denne siden ble ikke avsluttet riktig. DokuWiki lagret automatisk en kladd under ditt arbeid som du nå kan bruke for å fortsette redigeringen. Nedenfor kan du se de lagrede data.
/dokuwiki/inc/lang/id/
H A Ddraft.txt3 Proses pengeditan Anda sebelumnya tidak selesai dengan sempurna. DokuWiki secara otomatis meyimpan draft yang dapat Anda pakai untuk melanjutkan pengeditan. Dibawah ini Anda dapat melihat data yang disimpan pada sesi sebelumnya.
/dokuwiki/inc/lang/ca-valencia/
H A Ddraft.txt3 L'última edició d'esta pàgina no es completà correctament. DokuWiki guarda automàticament un borrador que ara pot recuperar per a continuar editant. Baix pot vore la data en què es guardà l'últim borrador.
/dokuwiki/lib/plugins/authplain/
H A Dauth.php173 * Modify user data
199 // update userinfo with new data, remembering to encrypt any password
219 msg('There was an error modifying your user data. You may need to register again.', -1);
220 // FIXME, io functions should be fail-safe so existing data isn't lost
296 * Bulk retrieval of user data
333 * Loads complete user data into memory before searching for groups.
382 * Load all user data
405 * Read user data from given file
409 * @param string $file the file to load data from
446 $data
[all...]
/dokuwiki/inc/lang/da/
H A Ddraft.txt3 Din sidste redigeringssession på denne side blev ikke afsluttet korrekt. DokuWiki har automatisk gemt en kladde mens du arbejdede, som du kan benytte til at fortsætte redigeringen. Forneden kan du se de data der blev gemt fra din sidste session.
/dokuwiki/vendor/composer/
H A DInstalledVersions.php256 * Returns the raw installed.php data for custom implementations
280 * Returns the raw data of all installed.php which are currently loaded for custom implementations
298 * the data it needs from this class, then call reload() with
303 * @param array[] $data A vendor/composer/installed.php data set
306 * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
308 public static function reload($data) argument
310 self::$installed = $data;
/dokuwiki/lib/plugins/info/
H A Dsyntax.php54 * @return array Return an array with all data you want to use in render
67 * @param array $data data created by handler()
70 public function render($format, Doku_Renderer $renderer, $data)
75 switch ($data[0]) {
113 $renderer->doc .= "no info about " . htmlspecialchars($data[0]);
68 render($format, Doku_Renderer $renderer, $data) global() argument
/dokuwiki/inc/Ui/
H A DSearch.php495 * @param array $data search results
499 protected function getPageLookupHTML($data)
501 if (empty($data)) {
510 foreach (array_keys($data) as $id) {
534 * @param array $data the results of the fulltext search
539 protected function getFulltextResultsHTML($data, $highlight)
543 if (empty($data)) {
554 foreach ($data as $id => $cnt) {
517 getPageLookupHTML($data) global() argument
557 getFulltextResultsHTML($data, $highlight) global() argument
/dokuwiki/inc/lang/en/
H A Ddraft.txt3 Your last edit session on this page was not completed correctly. DokuWiki automatically saved a draft during your work which you may now use to continue your editing. Below you can see the data that was saved from your last session.
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php322 * @param string $data
325 private function _stream_write($data)
332 $result = $this->sftp->put($this->path, $data, SFTP::SOURCE_STRING, $this->pos);
339 call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($data), strlen($data));
345 $this->pos += strlen($data);
350 return strlen($data);
344 _stream_write($data) global() argument
/dokuwiki/inc/lang/cy/
H A Ddraft.txt3 Doedd eich sesiwn golygu ddiwethaf heb gwblhau'n gywir. Gwnaeth DokuWiki gadw copi ddrafft yn awtomatig wrth i chi weithio, sydd nawr ar gael i chi er mwyn parhau gyda'ch golygu. Gallwch chi weld y data a gafodd ei gadw o'ch sesiwn diwethaf isod.
/dokuwiki/lib/plugins/extension/
H A Daction.php36 if ($event->data != 'plugin_extension') return;
/dokuwiki/inc/Extension/
H A DAuthPlugin.php138 $result = call_user_func_array([$this, $validTypes[$type]], $evt->data['params']);
139 $evt->data['modification_result'] = $result;
249 * @param bool $requireGroups whether or not the returned data must include groups
250 * @return false|array containing user data or false
284 * Modify user data [implement only where required/possible]
295 msg("authorisation method does not allow modifying of user data", -1);
331 * Bulk retrieval of user data [implement only where required/possible]
343 msg("authorisation method does not support mass retrieval of user data", -1);
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md41 while ($data = mysql_fetch_object($res)) {
43 $item->title = $data->title;
44 $item->link = $data->url;
45 $item->description = $data->short;
51 $item->date = $data->newsdate;
/dokuwiki/inc/lang/ca/
H A Ddraft.txt3 La darrera sessió vostra d'edició d'aquesta pàgina no es va completar correctament. DokuWiki en va desar automàticament un esborrany mentre treballàveu, el qual podeu utilitzar ara per continuar l'edició. Més avall podeu veure la data i hora en què es va desar durant la vostra darrera sessió.
/dokuwiki/
H A Dinstall.php131 url(data/dont-panic-if-you-see-this-in-your-logs-it-means-your-directory-permissions-are-correct.png)
178 * @param array $d submitted entry 'd' of request data
292 * Check validity of data
366 * Writes the data to the config files
469 @touch(DOKU_INC . 'data/cache/autosubmit.txt');
497 * @param string $data
502 function fileWrite($filename, $data)
513 if (!empty($data)) {
514 fwrite($fp, $data);
568 'data'
474 fileWrite($filename, $data) global() argument
[all...]
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_admin.less65 /* data directory security check */

1234567