Home
last modified time | relevance | path

Searched refs:timestamp (Results 1 – 9 of 9) sorted by path

/dokuwiki/inc/ChangeLog/
H A DChangeLog.php43 * @param string|int $rev empty string or revision timestamp
58 * @param int $rev timestamp of current page
69 * @param int $rev revision timestamp
83 * The value of identifier can be determined by timestamp as far as the file exists,
86 * @return int|false revision timestamp
100 * @return int|false revision timestamp
126 * Get the changelog information for a specific revision (timestamp)
132 * @param int $rev revision timestamp
136 * - date: unix timestamp
307 * Get the nth revision left or right-hand side for a specific page id and revision (timestamp)
[all...]
H A DChangeLogTrait.php17 abstract public function addLogEntry(array $info, $timestamp = null); argument
32 'date' => (int)$info[0], // unix timestamp
50 * @param int $timestamp log line date (optional)
53 public static function buildLogLine(array &$info, $timestamp = null) argument
57 'date' => $timestamp ?? $info['date'],
108 * When reference timestamp $rev is outside time range of changelog, readloglines() will return
111 * @param int $rev revision timestamp
H A DMediaChangeLog.php23 * @param string|int $rev empty string or revision timestamp
46 * @param int $timestamp log line date (optional)
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);
43 addLogEntry(array $info, $timestamp = null) global() argument
H A DPageChangeLog.php23 * @param string|int $rev empty string or revision timestamp
46 * @param int $timestamp log line date (optional)
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);
43 addLogEntry(array $info, $timestamp = null) global() argument
/dokuwiki/inc/Remote/
H A DApiCore.php106 * Returns a Unix timestamp (seconds since 1970-01-01 00:00:00 UTC).
111 * @return int A unix timestamp
354 * a given timestamp.
357 * when no timestamp is given.
360 * @param int $timestamp Only show changes newer than this unix timestamp
365 public function getRecentPageChanges($timestamp = 0)
367 $recents = getRecentsSince($timestamp);
396 * @param int $rev Revision timestamp to access an older revision
425 * @param int $rev revision timestamp
824 getRecentChanges($timestamp) global() argument
863 getRecentMediaChanges($timestamp) global() argument
[all...]
/dokuwiki/inc/
H A Dhttputils.php17 * @param int $timestamp lastmodified time of the cache file
23 function http_conditionalRequest($timestamp)
29 $last_modified = substr(gmdate('r', $timestamp), 0, -5) . 'GMT';
22 http_conditionalRequest($timestamp) global() argument
/dokuwiki/vendor/kissifrot/php-ixr/src/DataType/
H A DDate.php18 // $time can be a PHP timestamp or an ISO one
26 private function parseTimestamp($timestamp) argument
29 $this->dateTime = $date->setTimestamp($timestamp);
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md274 * All items are now forced to have a timestamp. [#348](https://github.com/simplepie/simplepie/pull/348)
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php583 $timestamp = strtotime($entry['properties']['published'][0]);
584 $pub_date = date('F j Y g:ia', $timestamp).' GMT';