Home
last modified time | relevance | path

Searched refs:data (Results 1 – 25 of 161) sorted by path

1234567

/dokuwiki/bin/
H A Dgittool.php285 $data = array_merge(
291 if (!$data) {
294 $this->success('Found ' . count($data) . ' .git directories');
296 $data = array_map('fullpath', array_map('dirname', $data));
297 return $data;
H A Dindexer.php68 $data = [];
70 search($data, $conf['datadir'], 'search_allpages', ['skipacl' => true]);
71 $this->quietecho(count($data) . " pages found.\n");
73 foreach ($data as $val) {
/dokuwiki/data/
H A Ddeleted.files220 data/security.png
221 data/security.xcf
895 data/pages/wiki/playground.txt
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt441 [[DokuWiki]] can integrate data from external XML feeds. For parsing the XML feeds, [[http://simplepie.org/|SimplePie]] is used. All formats understood by SimplePie can be used in DokuWiki as well. You can influence the rendering by multiple additional space separated parameters:
/dokuwiki/
H A Dfeed.php74 $data = null; global() variable
82 $data = $modes[$opt['feed_mode']]($opt); global() variable
204 rss_buildItems(& $rss, & $data, $opt) global() argument
/dokuwiki/inc/Action/
H A DDenied.php29 $data = null;
30 $event = new Event('ACTION_DENIED_TPLCONTENT', $data);
H A DExport.php28 * Event data:
29 * data['id'] -- page id
30 * data['mode'] -- requested export mode
31 * data['headers'] -- export headers
32 * data['output'] -- export output
95 // prepare event data
96 $data = [];
97 $data['id'] = $ID;
98 $data['mode'] = $mode;
99 $data['header
[all...]
/dokuwiki/inc/
H A DAjax.php58 $data = ft_pageLookup($query, true, useHeading('navigation'));
60 if ($data === []) return;
65 foreach ($data as $id => $title) {
101 $data = ft_pageLookup($query);
102 if ($data === []) return;
103 $data = array_keys($data);
106 $data = array_slice($data, 0, 15);
107 $data
[all...]
H A DJpegMeta.php900 $data = null;
913 $data =& $this->_info['exif']['JFIFThumbnail'];
918 if (($which == 'adobe') || ($data == null)){
929 $data =& $this->_info['adobe']['ThumbnailData'];
934 if ($data != null) {
936 echo $data;
1033 return false; // ERROR: Extraneous data
1041 return false; // ERROR: Extraneous data
1050 case 0xE0: // APP0: JFIF data
1051 case 0xE1: // APP1: EXIF or XMP data
1270 _writeJPEGMarker($marker, $length, & $data, $origLength) global() argument
1742 _readIFD($data, $base, $offset, $isBigEndian, $mode) global() argument
2008 _writeIFD(& $data, $pos, $offsetBase, & $entries, $isBigEndian, $hasNext) global() argument
2514 _readIPTC(& $data, $pos = 0) global() argument
2604 _write8BIM(& $data, $pos, $type, $header, & $value) global() argument
2672 _writeIPTCEntry(& $data, $pos, $type, & $value) global() argument
3039 _getByte(& $data, $pos) global() argument
3057 _putByte(& $data, $pos, $val) global() argument
3066 _getShort(& $data, $pos, $bigEndian = true) global() argument
3081 _putShort(& $data, $pos = 0, $val = 0, $bigEndian = true) global() argument
3105 _getLong(& $data, $pos, $bigEndian = true) global() argument
3134 _putLong(& $data, $pos, $val, $bigEndian = true) global() argument
3153 _getNullString(& $data, $pos) global() argument
3173 _getFixedString(& $data, $pos, $length = 1) global() argument
3189 _putString(& $data, $pos, & $str) global() argument
3199 _hexDump(& $data, $start = 0, $length = 1) global() argument
[all...]
H A DLogger.php118 * @triggers LOGGER_DATA_FORMAT can be used to change the logged data or intercept it
127 $data = [
139 $event = new Event('LOGGER_DATA_FORMAT', $data);
141 $data['loglines'] = $this->formatLogLines($data);
147 $data['loglines'] = $this->formatLogLines($data);
150 // only log when any data available
151 if (count($data['loglines'])) {
152 return $this->writeLogLines($data['logline
165 formatLogLines($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...]
H A DPassHash.php814 * @param string $data Message to be hashed.
816 * @param bool $raw_output When set to TRUE, outputs raw binary data. FALSE outputs lowercase hexits.
819 public static function hmac($algo, $data, $key, $raw_output = false)
823 return hash_hmac($algo, $data, $key, $raw_output);
845 $output = $algo($opad . pack($pack, $algo($ipad . $data)));
796 hmac($algo, $data, $key, $raw_output = false) global() argument
/dokuwiki/inc/Cache/
H A DCache.php16 public $ext = ''; // file ext for cache data, secondary identifier for this item
154 * retrieve the cached data
165 * cache $data
167 * @param string $data the data to be cached
170 public function storeCache($data) argument
176 return io_saveFile($this->cache, $data);
180 * remove any cached data associated with this cache instance
/dokuwiki/inc/Debug/
H A DDebugHelper.php159 $data = [
167 $event = new Event(self::INFO_DEPRECATION_LOG_EVENT, $data);
169 $msg = $event->data['called'] . ' is deprecated. It was called from ';
170 $msg .= $event->data['caller'] . ' in ' . $event->data['file'] . ':' . $event->data['line'];
171 if ($event->data['alternative']) {
172 $msg .= ' ' . $event->data['alternative'] . ' should be used instead!';
/dokuwiki/inc/Extension/
H A DAdminPlugin.php92 $data = [];
93 $data['instance'] = $this;
94 $data['hasAccess'] = false;
96 $event = new Event('ADMINPLUGIN_ACCESS_CHECK', $data);
99 $data['hasAccess'] = auth_isadmin();
101 $data['hasAccess'] = auth_ismanager();
106 return $data['hasAccess'];
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);
H A DEvent.php16 /** @var mixed|null READWRITE data relevant to the event, no standardised format, refer to event docs */ variable in dokuwiki\\Extension\\Event
17 public $data;
36 * @param mixed $data
38 public function __construct($name, &$data)
42 $this->data =& $data;
59 * $evt = new dokuwiki\Plugin\Doku_Event(name, data);
108 * - carry out the default action using $this->data based on $enablePrevent and
134 $this->result = call_user_func_array($action, [&$this->data]);
189 * @param mixed $data even
37 __construct($name, & $data) global() argument
196 createAndTrigger($name, & $data, $action = null, $canPreventDefault = true) global() argument
[all...]
H A DRemotePlugin.php
H A DSyntaxPlugin.php65 * Handler to prepare matched data for the rendering process
67 * This function can only pass data to render() via its return value - render()
76 * @return bool|array Return an array with all data you want to use in render, false don't add an instruction
84 * during the object's current life. The only reliable data it receives are its
95 * The contents of the $data array depends on what the handler() function above
100 * @param array $data data created by handler()
103 abstract public function render($format, Doku_Renderer $renderer, $data);
104 render($format, Doku_Renderer $renderer, $data) global() argument
/dokuwiki/inc/File/
H A DPageFile.php22 /* @var array $data initial data when event COMMON_WIKIPAGE_SAVE triggered */
23 protected $data; variable in dokuwiki\\File\\PageFile
77 * @return array|void data of event COMMON_WIKIPAGE_SAVE
94 if (isset($this->data)) return;
101 // prepare data for event COMMON_WIKIPAGE_SAVE
102 $data = [
117 // determine tentatively change type and relevant elements of event data
118 if ($data['revertFrom']) {
120 $data['changeTyp
[all...]
/dokuwiki/inc/Form/
H A DLegacyForm.php155 * Creates an old legacy form from this modern form's data
170 $data = $element->attrs();
171 $data['_elem'] = $this->legacyType($element->getType());
174 $data['_class'] = $label->attr('class');
176 $legacy->_content[] = $data;
/dokuwiki/inc/HTTP/
H A DDokuHTTPClient.php58 * @param string|array $data the post data either as array or raw data
62 public function sendRequest($url, $data = '', $method = 'GET') argument
66 'data' => $data,
72 $data = $httpdata['data'];
77 return parent::sendRequest($url, $data, $method);
H A DHTTPClient.php61 // what we use as boundary on multipart/form-data posts
107 * @param array $data Associative array of parameters
113 public function dget($url, $data, $sloppy304 = false)
120 $url .= $this->postEncode($data);
130 * @param array $data Associative array of parameters
134 public function post($url, $data)
136 if (!$this->sendRequest($url, $data, 'POST')) return false;
147 * Post data should be passed as associative array. When passed as string it will be
151 * @param mixed $data - the post data eithe
121 dget($url, $data, $sloppy304 = false) global() argument
141 post($url, $data) global() argument
164 sendRequest($url, $data = '', $method = 'GET') global() argument
580 sendData($socket, $data, $message) global() argument
824 postEncode($data) global() argument
837 postMultipartEncode($data) 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/inc/Menu/
H A DAbstractMenu.php44 $data = ['view' => $this->view, 'items' => []];
45 Event::createAndTrigger('MENU_ITEMS_ASSEMBLY', $data, [$this, 'loadItems']);
46 return $data['items'];
52 * @param array $data The plugin data
55 public function loadItems(&$data)
63 $data['items'][] = $item;
56 loadItems(& $data) global() argument

1234567