/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/ |
H A D | FeedDate.php | 4 * 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 D | Save.php | 34 global $DATE; 50 $DATE != 0 51 && isset($INFO['meta']['date']['modified']) 52 && $INFO['meta']['date']['modified'] > $DATE
|
H A D | Edit.php | 56 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 D | admin.php | 19 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 = date('Y-m-d'); 55 * Show the navigational tabs and date picker 65 $form->addTextInput('date', $this->getLang('date')) 66 ->attr('type', 'date') 17 protected $date; global() variable in admin_plugin_logviewer [all...] |
/dokuwiki/vendor/kissifrot/php-ixr/src/DataType/ |
H A D | Date.php | 11 class Date class 28 $date = new \DateTime(); 29 $this->dateTime = $date->setTimestamp($timestamp); 36 * @throws \Exception when no valid date is given
|
H A D | Value.php | 42 // 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 D | PageFile.php | 49 * 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 D | Date.php | 45 use SimplePie\Parse\Date; 47 class_exists('SimplePie\Parse\Date'); 49 // @trigger_error(sprintf('Using the "SimplePie_Parse_Date" class is deprecated since SimplePie 1.7.0, use "SimplePie\Parse\Date" instead.'), \E_USER_DEPRECATED); 52 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Parse\Date" instead */ 53 class SimplePie_Parse_Date extends Date 46 use SimplePie\Parse\Date; global() alias
|
/dokuwiki/inc/ |
H A D | Logger.php | 206 $logline = date('Y-m-d H:i:s', $datetime) . "\t"; 220 * @param false|string|int $date Date to access, false for today 223 public function getLogfile($date = false) 227 if ($date !== null && !is_numeric($date)) { 228 $date = strtotime($date); 230 if (!$date) $date 202 getLogfile($date = false) global() argument [all...] |
H A D | changelog.php | 37 * @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 D | Info.php | 23 'date' => '', // YYYY-MM-DD 31 $return['date'] = $matches[2]; 47 $return['version'] = $return['date'];
|
H A D | infoutils.php | 63 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 D | XmlRpcServer.php | 6 use IXR\DataType\Date; alias
|
/dokuwiki/inc/ChangeLog/ |
H A D | PageChangeLog.php | 46 * @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 D | MediaChangeLog.php | 46 * @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 D | ChangeLog.php | 98 * 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 D | RevisionInfo.php | 27 * - 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 '—'; 222 $rev = $this->isCurrent() ? '' : $this->val('date'); 226 $date [all...] |
/dokuwiki/ |
H A D | feed.php |
|
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
H A D | OPMLCreator.php | 31 $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 D | PageDiff.php | 79 '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 D | MediaDiff.php | 92 $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 D | Date.php | 48 * Date Parser 53 class Date 61 public $date; 560 * Cached PCRE for Date::$day 568 * Cached PCRE for Date::$month 592 * Create new Date object, and set self::day_pcre, 627 $object = new Date(); 633 * Parse a date 637 * @param string $date Date t 54 class Date global() class 62 public $date; global() variable in SimplePie\\Parse\\Date 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 D | rsplus.php | 11 * 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 D | mediameta.php | 8 * htmltype - 'text', 'textarea' or 'date' 34 'date', 35 array('Date.EarliestTime')),
|
/dokuwiki/inc/Sitemap/ |
H A D | Item.php | 48 $date = @filemtime(wikiFN($id)); 49 if (!$date) return null; 50 return new Item(wl($id, '', true), $date, $changefreq, $priority);
|