Home
last modified time | relevance | path

Searched +full:date -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 389) sorted by relevance

12345678910>>...16

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedDate.php4 * FeedDate is an internal class that stores a date for a feed or feed item.
12 * Creates a new instance of FeedDate representing a given date.
13 * Accepts RFC 822, ISO 8601 date formats (or anything that PHP's DateTime
16 * @param mixed $dateString optional the date this FeedDate will represent. If not specified, the current date and
22 $dateString = date("r");
37 * Gets the date stored in this FeedDate as an RFC 822 date.
39 * @return string a date in RFC 822 format
44 $date
[all...]
/dokuwiki/inc/Action/
H A DSave.php34 global $DATE;
50 $DATE != 0
51 && isset($INFO['meta']['date']['modified'])
52 && $INFO['meta']['date']['modified'] > $DATE
H A DEdit.php56 global $DATE;
79 // Use the date of the newest revision, not of the revision we edit
81 if (!$DATE) $DATE = @filemtime(wikiFN($ID));
/dokuwiki/lib/plugins/logviewer/
H A Dadmin.php19 protected $date;
38 $this->date = $INPUT->str('date');
39 if (!preg_match('/^\d\d\d\d-\d\d-\d\d$/', $this->date)) {
40 $this->date = gmdate('Y-m-d');
55 * Show the navigational tabs and date picker
65 $form->addTextInput('date', $this->getLang('date'))
66 ->attr('type', 'date')->val($this->date)
17 protected $date; global() variable in admin_plugin_logviewer
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/DataType/
H A DDate.php11 class Date class
28 $date = new \DateTime();
29 $this->dateTime = $date->setTimestamp($timestamp);
36 * @throws \Exception when no valid date is given
H A DValue.php42 // Deal with IXR object types base64 and date
43 if (is_object($this->data) && $this->data instanceof Date) {
44 return 'date';
96 case 'date':
/dokuwiki/inc/File/
H A DPageFile.php49 * Get raw WikiText of the page, considering change type at revision date
200 'date' => $data['newRevision'],
238 if (touch($fileLastMod, $revInfo['date'])) {
241 $details = '(' . $wrong_timestamp . ' -> ' . $revInfo['date'] . ')';
252 if ($revInfo['date'] == time()) sleep(1); // wait a tick
264 * Moves the current version to the attic and returns its revision date
274 $date = filemtime($oldfile);
275 $newfile = $this->getPath($date);
276 io_writeWikiPage($newfile, $this->rawWikiText(), $this->id, $date);
277 return $date;
[all...]
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Parse/
H A DDate.php46 use SimplePie\Parse\Date; alias
48 class_exists('SimplePie\Parse\Date');
50 // @trigger_error(sprintf('Using the "SimplePie_Parse_Date" class is deprecated since SimplePie 1.7.0, use "SimplePie\Parse\Date" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Parse\Date" instead */
54 class SimplePie_Parse_Date extends Date
/dokuwiki/inc/
H A DLogger.php206 * @param false|string|int $date Date to access, false for today
209 public function getLogfile($date = false)
213 if ($date !== null && !is_numeric($date)) {
214 $date = strtotime($date);
216 if (!$date) $date = time();
218 return $conf['logdir'] . '/' . $this->facility . '/' . date('
202 getLogfile($date = false) global() argument
[all...]
H A Dchangelog.php37 * @param int $date Timestamp of the change
53 $date,
73 if (!$date) $date = time(); //use current time if none supplied
81 'date' => $date,
103 * @param int $date Timestamp of the change
114 $date,
131 if (!$date) $date
46 addLogEntry($date, $id, $type = DOKU_CHANGE_TYPE_EDIT, $summary = '', $extra = '', $flags = null, $sizechange = null) global() argument
107 addMediaLogEntry($date, $id, $type = DOKU_CHANGE_TYPE_EDIT, $summary = '', $extra = '', $flags = null, $sizechange = null) global() argument
[all...]
H A DInfo.php23 'date' => '', // YYYY-MM-DD
31 $return['date'] = $matches[2];
47 $return['version'] = $return['date'];
H A Dinfoutils.php63 Logger::debug("checkUpdateMessages(): messages up to date");
76 * Return DokuWiki's version (split up in date and type)
86 $version['date'] = trim(io_readFile(DOKU_INC . 'VERSION'));
90 $version['date'] = 'unknown';
92 // First try to get date and commit hash by calling Git
94 $commitInfo = shell_exec("git log -1 --pretty=format:'%h %cd' --date=short");
96 [$version['sha'], $date] = explode(' ', $commitInfo);
97 $version['date'] = hsc($date);
123 // Get commit date fro
[all...]
/dokuwiki/inc/Remote/
H A DXmlRpcServer.php6 use IXR\DataType\Date; alias
/dokuwiki/inc/ChangeLog/
H A DPageChangeLog.php46 * @param int $timestamp log line date (optional)
55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
63 $this->currentRevision = $info['date'];
H A DMediaChangeLog.php46 * @param int $timestamp log line date (optional)
55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
63 $this->currentRevision = $info['date'];
H A DChangeLog.php98 * Return the last revision identifier, date value of the last entry of the changelog
119 $this->cache[$this->id][$info['date']] ??= $info;
136 * - date: unix timestamp
184 * only that a line with the date exists in the changelog.
299 $revs[] = $info['date'];
315 * @param int $rev revision timestamp used as start date
357 if (($direction > 0 && $info['date'] > $rev) || ($direction < 0 && $info['date'] < $rev)) {
360 $relativeRev = $info['date'];
368 && ($info['date']
[all...]
H A DRevisionInfo.php27 * - date: unix timestamp
45 'date' => false,
121 * edit date and time of the page or media file
129 $formatted = dformat($this->val('date'));
131 // exact date is unknown for externally deleted file
135 return '<span class="date">' . $formatted . '</span>';
177 $rev = $this->isCurrent() ? '' : $this->val('date');
219 if (!$this->val('date')) return '&mdash;';
222 $rev = $this->isCurrent() ? '' : $this->val('date');
226 $date
[all...]
/dokuwiki/
H A Dfeed.php
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DOPMLCreator.php31 $date = new FeedDate($this->pubDate);
32 $feed .= " <dateCreated>".$date->rfc822()."</dateCreated>\n";
35 $date = new FeedDate($this->lastBuildDate);
36 $feed .= " <dateModified>".$date->rfc822()."</dateModified>\n";
/dokuwiki/inc/Ui/
H A DPageDiff.php79 'date' => false,
148 $isCurrent = $changelog->isCurrentRevision($RevInfo->val('date'));
154 $rev = $isCurrent ? '' : $RevInfo->val('date');
195 $rev1Summary = ($this->RevInfo1->val('date'))
204 $rev2Summary = ($this->RevInfo2->val('date'))
298 // use timestamp for current revision, date may be false when revisions < 2
299 [$rev1, $rev2] = [(int)$this->RevInfo1->val('date'), (int)$this->RevInfo2->val('date')];
347 // use timestamp for current revision, date may be false when revisions < 2
348 [$rev1, $rev2] = [(int)$this->RevInfo1->val('date'), (in
[all...]
H A DMediaDiff.php92 $isCurrent = $changelog->isCurrentRevision($RevInfo->val('date'));
96 $rev = $isCurrent ? '' : $RevInfo->val('date');
167 // use timestamp for current revision, date may be false when revisions < 2
168 [$rev1, $rev2] = [(int)$this->RevInfo1->val('date'), (int)$this->RevInfo2->val('date')];
197 $rev1 = $this->RevInfo1->isCurrent() ? '' : $this->RevInfo1->val('date');
198 $rev2 = $this->RevInfo2->isCurrent() ? '' : $this->RevInfo2->val('date');
241 $rev1 = $this->RevInfo1->isCurrent() ? '' : (int)$this->RevInfo1->val('date');
242 $rev2 = $this->RevInfo2->isCurrent() ? '' : (int)$this->RevInfo2->val('date');
246 $rev1Summary = ($this->RevInfo1->val('date'))
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php49 * Date Parser
54 class Date class
62 public $date; variable in SimplePie\\Parse\\Date
561 * Cached PCRE for Date::$day
569 * Cached PCRE for Date::$month
593 * Create new Date object, and set self::day_pcre,
628 $object = new Date();
634 * Parse a date
638 * @param string $date Date t
641 parse($date) global() argument
682 date_w3cdtf($date) global() argument
805 date_rfc2822($date) global() argument
884 date_rfc850($date) global() argument
940 date_asctime($date) global() argument
978 date_strtotime($date) global() argument
[all...]
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Drsplus.php11 * Date Started: 2009/03/28
74 'as.array.default', 'as.call', 'as.character', 'as.character.condition', 'as.character.Date', 'as.character.default',
77 'as.data.frame.character', 'as.data.frame.complex', 'as.data.frame.data.frame', 'as.data.frame.Date', 'as.data.frame.default',
81 'as.data.frame.ts', 'as.data.frame.vector', 'as.Date', 'as.Date.character', 'as.Date.date', 'as.Date.dates',
82 'as.Date.default', 'as.Date
[all...]
/dokuwiki/conf/
H A Dmediameta.php8 * htmltype - 'text', 'textarea' or 'date'
34 'date',
35 array('Date.EarliestTime')),
/dokuwiki/inc/Sitemap/
H A DItem.php48 $date = @filemtime(wikiFN($id));
49 if (!$date) return null;
50 return new Item(wl($id, '', true), $date, $changefreq, $priority);

12345678910>>...16