Home
last modified time | relevance | path

Searched refs:date (Results 26 – 50 of 2857) sorted by last modified time

12345678910>>...115

/plugin/siteexport/
H A Dpreload.php155 …iki Preload File\n * Auto-generated by Site Export plugin \n * Date: " . (date('Y-m-d H:s:i') ?: "…
/plugin/linkback/exe/
H A Dtrackback.php97 date('Y/m/d H:i', time()) . ': Received trackback from ' . $linkback['url'] . ' (' . $linkback['lid'] . ')',
H A Dpingback.php116 date('Y/m/d H:i', time()) . ': Received pingback from ' . $linkback['url'] . ' (' . $linkback['lid'] . ')',
/plugin/linkback/
H A DCHANGELOG22 * Use strftime() instead of date()
H A Dtools.php120 function addLogEntry($date, $id, $type = 'cl', $summary = '', $extra = '') { argument
125 if (!$date) {
126 $date = time(); //use current time if none supplied
136 'date' => $date,
179 if ($log['date'] < $trim_time) {
180 $old_lines[$log['date'] . ".$i"] = $lines[$i]; // keep old lines for now (append .$i to prevent key collisions)
182 $out_lines[$log['date'] . ".$i"] = $lines[$i]; // definitely keep these lines
H A Dplugin.info.txt4 date 2023-12-30
H A Dstyle.css45 background: transparent url(images/date.gif) 0px 1px no-repeat;
H A DCOPYING97 stating that you changed the files and the date of any change.
H A Dadmin.php106 $date = filemtime($file);
110 'date' => $date,
123 * Used for sorting targets in descending order by date of last linkback.
124 * If this date happens to be equal for the compared targest, page id
128 if ($a['date'] == $b['date']) {
131 return ($a['date'] < $b['date']) ? 1 : -1;
203 $date
[all...]
/plugin/linkback/action/
H A Ddisplay.php148 $date = $linkback['received'];
153 // linkback head with date and link
174 echo '</span>, <abbr class="received" title="' . gmdate('Y-m-d\TH:i:s\Z', $date) .
175 '">' . strftime($conf['dformat'], $date) . '</abbr>';
/plugin/structpublish/
H A DLICENSE96 stating that you changed the files and the date of any change.
H A Dplugin.info.txt4 date 2024-04-04
/plugin/structpublish/meta/
H A DRevision.php196 $this->datetime = date('Y-m-d\TH:i', $timestamp);
/plugin/diagrams/
H A DLICENSE96 stating that you changed the files and the date of any change.
H A Dplugin.info.txt4 date 2023-12-14
/plugin/struct/meta/
H A DDateFormatConverter.php57 '%X' => 'H:i:s', // Preferred time representation based on locale, without the date Example: 03:59:16 or 15:59:16
61 '%c' => 'D M j H:i:s Y', // Preferred date and time stamp based on locale Example: Tue Feb 5 00:45:10 2009 for February 5, 2009 at 12:45:10 AM
65 '%x' => 'm/d/y', // Preferred date representation based on locale, without the time Example: 02/05/09 for February 5, 2009
72 protected static $date = [ variable in dokuwiki\\plugin\\struct\\meta\\DateFormatConverter
105 'u' => '%s000000', // Microseconds (added in PHP 5.2.2). Note that date() will always generate000000 since it takes an integer parameter, whereas DateTime::format()does support microseconds if DateTime was created with microseconds. Example: 654321
108 'I' => '', // NOT SUPPORTED (capital i) Whether or not the date is in daylight saving time 1 if Daylight Saving Time, 0otherwise.
114 'c' => '', // NOT SUPPORTED ISO 8601 date (added in PHP 5) 2004-02-12T15:19:21+00:00
115 'r' => '%a, %e %b %Y %H:%M:%S %s', // » RFC 2822 formatted date Example: Thu, 21 Dec 2000 16:01:07 +0200
120 * Convert a strftime format string to a date format string
127 $date
168 toStrftime($date) global() argument
[all...]
H A DSearchConfig.php18 /** @var int caching depends on current date */
134 date('Y-m-d')
140 // or apply date formula, given as strtotime
154 $filter = str_replace($filter, date('Y-m-d', $timestamp), $filter);
/plugin/struct/
H A Dplugin.info.txt4 date 2024-04-09
H A DLICENSE96 stating that you changed the files and the date of any change.
/plugin/struct/script/
H A DEntryEditor.js17 * Attach datepicker to date types, if lacking HTML5 support.
38 onSelect: function (date, inst) { argument
42 date += ' ' + both[1];
44 date += ' 00:00';
46 $input.val(date);
/plugin/struct/types/
H A DDate.php26 $date = date_create($value);
27 if ($date !== false) {
28 $out = date_format($date, $this->config['format']);
49 $rawvalue = date('Y-m-d');
56 'type' => 'date', // HTML5 date picker
80 throw new ValidationException('invalid date format');
H A DDateTime.php47 $rawvalue = date('Y-m-d\TH:i');
74 [$date, $time] = array_pad(preg_split('/[ |T]/', $rawvalue, 2), 2, '');
75 $date = trim($date);
78 [$year, $month, $day] = explode('-', $date, 3);
/plugin/struct/action/
H A Doutput.php120 $value = date($format, strtotime($value));
/plugin/mermaid/
H A DLICENSE96 stating that you changed the files and the date of any change.
/plugin/doi/Resolver/
H A DDoiResolver.php32 $result['published'] = $data['issued']['date-parts'][0][0] ?? '';

12345678910>>...115