Home
last modified time | relevance | path

Searched refs:info (Results 1 – 25 of 74) sorted by path

123

/dokuwiki/
H A DREADME9 See COPYING and file headers for license info
/dokuwiki/bin/
H A Dgittool.php150 $this->info("could not find a repository for $ext");
188 $this->info("executing $shell in $repo");
233 $this->info("installing $ext via download from $url");
263 $this->info("cloning $ext from $repo to $target");
284 $this->info('Looking for .git directories');
H A Dplugin.php78 $info = $plugin->getInfo();
82 ['', $name, $info['desc']],
H A Drender.php57 $info = [];
58 $result = p_render($renderer, p_get_instructions($source), $info);
H A Dwantedpages.php79 $this->info("searching $startdir");
/dokuwiki/data/
H A Ddeleted.files178 lib/plugins/authmysql/plugin.info.txt
213 lib/plugins/authpgsql/plugin.info.txt
598 lib/plugins/plugin/plugin.info.txt
654 lib/tpl/default/template.info.txt
664 lib/plugins/info/lang/sl/lang.php
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php109 * Parses a changelog line into its components and save revision info to the cache pool
116 $info = static::parseLogLine($value);
117 if (is_array($info)) {
118 $info['mode'] = $this->getMode();
119 $this->cache[$this->id][$info['date']] ??= $info;
120 return $info;
133 * @param bool $retrieveCurrentRevInfo allows to skip for getting other revision info in the
297 $info = $this->parseAndCacheLogLine($lines[$i]);
298 if (is_array($info)) {
106 cacheRevisionInfo($info) global() argument
[all...]
H A DChangeLogTrait.php15 * @return array added log line as revision info
17 abstract public function addLogEntry(array $info, $timestamp = null); argument
29 $info = sexplode("\t", rtrim($line, "\n"), 8);
30 if ($info[3]) { // we need at least the page id to consider it a valid line
32 'date' => (int)$info[0], // unix timestamp
33 'ip' => $info[1], // IP address (127.0.0.1)
34 'type' => $info[2], // log line type
35 'id' => $info[3], // page id
36 'user' => $info[4], // user name
37 'sum' => $info[
53 buildLogLine(array& $info, $timestamp = null) global() argument
[all...]
H A DMediaChangeLog.php45 * @param array $info Revision info structure of a media file
47 * @return array revision info of added log line
51 public function addLogEntry(array $info, $timestamp = null)
55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
58 $logline = static::buildLogLine($info, $timestamp);
63 $this->currentRevision = $info['date'];
64 $info['mode'] = $this->getMode();
65 $this->cache[$this->id][$this->currentRevision] = $info;
66 return $info;
43 addLogEntry(array $info, $timestamp = null) global() argument
[all...]
H A DPageChangeLog.php45 * @param array $info Revision info structure of a page
47 * @return array revision info of added log line
51 public function addLogEntry(array $info, $timestamp = null)
55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
58 $logline = static::buildLogLine($info, $timestamp);
63 $this->currentRevision = $info['date'];
64 $info['mode'] = $this->getMode();
65 $this->cache[$this->id][$this->currentRevision] = $info;
66 return $info;
43 addLogEntry(array $info, $timestamp = null) global() argument
[all...]
H A DRevisionInfo.php21 protected $info;
26 * @param array $info Revision Information structure with entries:
40 public function __construct($info = null)
42 if (!is_array($info) || !isset($info['id'])) {
43 $info = [
48 $this->info = $info;
77 if (isset($value) && !array_key_exists($key, $this->info)) {
79 $this->info[
16 protected $info; global() variable in dokuwiki\\ChangeLog\\RevisionInfo
35 __construct($info = null) global() argument
92 append(array $info) global() argument
[all...]
/dokuwiki/inc/Extension/
H A DAdminPlugin.php26 $info = $this->getInfo();
27 $menutext = $info['name'] . ' ...';
H A DPluginTrait.php39 'desc' => 'Unknown purpose - bad plugin.info.txt',
43 $file = DOKU_PLUGIN . '/' . $ext . '/plugin.info.txt';
56 Logger::error(sprintf('Extension %s does not provide a plugin.info.txt in %s', $ext, $file));
276 return p_render($format, p_get_instructions($text), $info);
/dokuwiki/inc/File/
H A DMediaFile.php130 $info = getimagesize($this->path);
131 if ($info === false) return;
132 [$this->width, $this->height] = $info;
/dokuwiki/inc/HTTP/
H A DHTTPClient.php715 * print debug info
719 * @param string $info
724 protected function debug($info, $var = null)
728 $this->debugText($info, $var);
730 $this->debugHtml($info, $var);
735 * print debug info as HTML
737 * @param string $info
740 protected function debugHtml($info, $var = null)
742 echo '<b>' . $info . '</b> ' . (microtime(true) - $this->start) . 's<br />';
753 * prints debug info a
711 debug($info, $var = null) global() argument
726 debugHtml($info, $var = null) global() argument
743 debugText($info, $var = null) global() argument
[all...]
/dokuwiki/inc/
H A DJpegMeta.php71 * Returns all gathered info as multidim array
86 * Returns basic image info
93 $info = array();
99 $info['Name'] = $this->_info['file']['Name'];
101 $info['Url'] = $this->_info['file']['Url'];
102 $info['NiceSize'] = "???KB";
104 $info['Size'] = $this->_info['file']['Size'];
105 $info['NiceSize'] = $this->_info['file']['NiceSize'];
109 $info['Format'] = $this->_info['sof']['Format'] . " JPEG";
111 $info['Forma
[all...]
/dokuwiki/inc/Remote/
H A DApiCore.php35 'core.getAPIVersion' => (new ApiCall([$this, 'getAPIVersion'], 'info'))->setPublic(),
37 'core.getWikiVersion' => new ApiCall('getVersion', 'info'),
38 'core.getWikiTitle' => (new ApiCall([$this, 'getWikiTitle'], 'info'))->setPublic(),
39 'core.getWikiTime' => (new ApiCall([$this, 'getWikiTime'], 'info')),
75 // region info
491 $info = $pagelog->getRevisionInfo($rev);
496 $info['user'],
497 $info['ip'],
498 $info['sum'],
499 $info['typ
[all...]
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php41 // remember current user info
50 foreach ($users as $user => $info) {
51 [$style, $lastupdate] = $info;
124 // restore current user info
131 * Lock subscription info
164 * Unlock subscription info
H A DSubscriberManager.php139 foreach ($subs as $target => $info) {
142 'style' => $info[$user][0],
143 'data' => $info[$user][1],
255 foreach ($users as $user => $info) {
/dokuwiki/inc/Ui/Media/
H A DDisplayRow.php20 $info = trim($this->formatDimensions('') . ' ' . $this->formatDate() . ' ' . $this->formatFileSize());
27 echo '<span class="info">(' . $info . ')</span>' . NL;
/dokuwiki/inc/Ui/
H A DMediaRevisions.php71 foreach ($revisions as $info) {
72 $rev = $info['date'];
73 $RevInfo = new RevisionInfo($info);
95 $RevInfo->showEditor(), // editor info
H A DPageDiff.php68 // revision info object of older file (left side)
69 $info = $changelog->getCurrentRevisionInfo();
70 $this->RevInfo1 = new RevisionInfo($info);
76 // revision info object of newer file (right side)
129 * Prepare revision info of comparison pair
137 // create revision info object for older and newer sides
189 // prepare revision info of comparison pair, except PageConfrict or PageDraft
435 $info = $changelog->getRevisionInfo($rev);
436 // revision info may have timestamp key when external edits occurred
437 $info['timestam
[all...]
H A DPageRevisions.php70 foreach ($revisions as $info) {
71 $rev = $info['date'];
73 $RevInfo = new RevisionInfo($info);
96 $RevInfo->showEditor(), // editor info
H A DPageView.php56 $html = html_secedit(p_render('xhtml', p_get_instructions($this->text), $info), $secedit);
H A DRecent.php92 $RevInfo->showEditor(), // editor info
154 * $info['date'] is to be incremented 1 second when such deletion detected.
156 protected function checkCurrentRevision(array &$info) argument
158 if ($info['mode'] == RevisionInfo::MODE_PAGE) {
159 $changelog = new PageChangelog($info['id']);
161 $changelog = new MediaChangelog($info['id']);
163 if (!$changelog->isCurrentRevision($info['date'])) {
166 // the page or media file was externally deleted, updated info because the link is already red
168 $info = array_merge($info,
[all...]

123