Home
last modified time | relevance | path

Searched refs:date (Results 1 – 25 of 98) sorted by relevance

1234

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedDate.php22 $dateString = date("r");
44 $date = gmdate("D, d M Y H:i:s O", $this->unix);
46 return $date;
56 $date = gmdate("Y-m-d\TH:i:sP", $this->unix);
58 return $date;
/dokuwiki/vendor/php81_bc/strftime/
H A Dexample.php6 $date = '20220312'; variable
8 echo strftime('%Y-%m-%d %H:%M:%S', $date), PHP_EOL;
9 echo strftime('%Y-%m-%d %H:%M:%S', strtotime($date)), PHP_EOL;
/dokuwiki/lib/plugins/extension/
H A DManager.php43 $this->data['updated'] = date('r');
46 $this->data['installed'] = date('r');
83 $date = $this->data['updated'] ?? $this->data['installed'] ?? '';
84 if (!$date) return null;
86 return new \DateTime($date);
102 $date = $this->data['installed'] ?? '';
103 if (!$date) return null;
105 return new \DateTime($date);
/dokuwiki/inc/Feed/
H A DFeedParserItem.php21 } elseif (($date = $this->get_date('U')) !== null && $date !== false) {
22 return strftime($date_format, $date);
/dokuwiki/inc/
H A DLogger.php206 $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) argument
227 if ($date !== null && !is_numeric($date)) {
228 $date = strtotime($date);
230 if (!$date) $date = time();
232 return $conf['logdir'] . '/' . $this->facility . '/' . date('Y-m-d', $date) . '.log';
H A Dchangelog.php37 * @param int $date Timestamp of the change
53 $date, argument
73 if (!$date) $date = time(); //use current time if none supplied
81 'date' => $date,
103 * @param int $date Timestamp of the change
114 $date, argument
131 if (!$date) $date = time(); //use current time if none supplied
138 'date' => $date,
/dokuwiki/_test/tests/inc/
H A Dtoolbar.test.php13 $date = str_replace('/', '\/', dformat());
16 'alert(\"\\\\123\\\\\\")<\/script>]] (john) '.$date.'\/\/\""';
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php61 public $date; variable in SimplePie\\Parse\\Date
637 * @param string $date Date to parse
640 public function parse($date) argument
643 if (($returned = call_user_func($method, $date)) !== false) {
649 if (($returned = call_user_func([$this, $method], $date)) !== false) {
681 public function date_w3cdtf($date) argument
721 if (preg_match($pcre, $date, $match)) {
804 public function date_rfc2822($date) argument
821 if (preg_match($pcre, $this->remove_rfc2822_comments($date), $match)) {
883 public function date_rfc850($date) argument
[all …]
/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/lib/plugins/logviewer/
H A Dadmin.php19 protected $date; variable in admin_plugin_logviewer
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');
66 ->attr('type', 'date')->val($this->date)->addClass('quickselect');
78 … ['do' => 'admin', 'page' => 'logviewer', 'date' => $this->date, 'facility' => $facility]
92 $logfile = Logger::getInstance($this->facility)->getLogfile($this->date);
H A Daction.php44 foreach ($dates as $date) {
45 io_rmdir($date, true);
/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);
/dokuwiki/vendor/kissifrot/php-ixr/src/DataType/
H A DDate.php28 $date = new \DateTime();
29 $this->dateTime = $date->setTimestamp($timestamp);
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/
H A Dconstants.php4 define("TIME_ZONE", date("O", time()));
/dokuwiki/lib/plugins/extension/_test/testdata/multi/mpl1/
H A Dplugin.info.txt4 date 2024-11-22
/dokuwiki/lib/plugins/extension/_test/testdata/plgsub6/plgfoo6/
H A Dplugin.info.txt4 date 2013-05-02
/dokuwiki/lib/plugins/extension/_test/testdata/plgfoo5/
H A Dplugin.info.txt4 date 2013-05-02
/dokuwiki/lib/plugins/extension/_test/testdata/plgsub4/plugin4/
H A Dplugin.info.txt4 date 2013-05-02
/dokuwiki/lib/plugins/extension/_test/testdata/tplsub6/tplfoo6/
H A Dtemplate.info.txt4 date 2013-05-02
/dokuwiki/lib/plugins/extension/_test/testdata/template2/
H A Dtemplate.info.txt4 date 2013-05-02
/dokuwiki/lib/plugins/extension/_test/testdata/tplfoo5/
H A Dtemplate.info.txt4 date 2013-05-02
/dokuwiki/lib/plugins/extension/_test/testdata/multi/mtpl4/
H A Dtemplate.info.txt4 date 2024-11-22
/dokuwiki/lib/plugins/extension/_test/testdata/multi/mpl2/
H A Dplugin.info.txt4 date 2024-11-22
/dokuwiki/lib/plugins/extension/_test/testdata/tplsub4/template4/
H A Dtemplate.info.txt4 date 2013-05-02
/dokuwiki/lib/plugins/extension/_test/testdata/multi/mpl3/
H A Dplugin.info.txt4 date 2024-11-22

1234