Home
last modified time | relevance | path

Searched refs:date (Results 201 – 225 of 2857) sorted by last modified time

12345678910>>...115

/plugin/htmlok/
H A Dplugin.info.txt4 date 2023-05-10
/plugin/addnewpage/
H A Dplugin.info.txt5 date 2023-05-10
/plugin/gitbacked/
H A DCHANGELOG.md120 - Updated last change date to current date - fix [#38]
136 - Update plugin date and URL, added Carsten Teibes as author
155 - The release name complies with the date property of plugin.info.txt
H A DLICENSE96 stating that you changed the files and the date of any change.
H A Dplugin.info.txt4 date 2023-05-07
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DForm.php737 $this->writer->write('/M ' . $this->writer->string('D:' . date('YmdHis')));
1385 $this->writer->write('/M ' . $this->writer->string('D:' . date('YmdHis')));
1673 $this->writer->write('/M ' . $this->writer->string('D:' . date('YmdHis')));
1775 $this->writer->write('/M ' . $this->writer->string('D:' . date('YmdHis')));
H A DMpdf.php9706 // Replace of page number aliases and date format
9785 // Replace of page number aliases and date format
9862 // Replace of page number aliases and date format
12404 // Replace of page number aliases and date format
13060 $hd = date('Y-m-d H:i') . ' Page ' . $this->page . ' of {nb}';
27128 return date($matches[1]);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Utils/
H A DPdfDate.php9 * PDF documents use the internal date format: (D:YYYYMMDDHHmmSSOHH'mm'). The date format has these parts:
23 public static function format($date) argument
25 $z = date('O'); // +0200
27 return date('YmdHis', $date) . $offset;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DMetadataWriter.php57 $z = date('O'); // +0200
59 $CreationDate = date('Y-m-d\TH:i:s') . $offset; // 2006-03-10T10:47:26-05:00 2006-06-19T09:05:17Z
527 $annot .= ' /M ' . $this->writer->string('D:' . date('YmdHis'));
640 $annot .= ' /M ' . $this->writer->string('D:' . date('YmdHis'));
641 $annot .= ' /CreationDate ' . $this->writer->string('D:' . date('YmdHis'));
748 $annot .= ' /M ' . $this->writer->string('D:' . date('YmdHis'));
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DLICENSE.txt96 stating that you changed the files and the date of any change.
H A DCHANGELOG.md12 * Fixed date and time format in the informations dictionary (#1083, @peterdevpl)
409 - error if script run across date change at midnight
/plugin/dw2pdf/vendor/setasign/fpdi/
H A DREADME.md77 - Clean and up-to-date code base and style
/plugin/dw2pdf/
H A Dplugin.info.txt4 date 2023-11-25
/plugin/hidden/
H A Dplugin.info.txt4 date 2023-11-07
/plugin/combo/ComboStrap/
H A DArrayUtility.php32 if (preg_match('/date|created|modified/i', $key) && is_numeric($value)) {
33 $value = date(DATE_ATOM, $value);
H A DLogUtility.php159 fwrite($fh, date('c') . $sep . self::LVL_NAME[$logLevel] . $sep . $msg . $sep . $INPUT->server->str('REMOTE_ADDR') . $sep . $id . "\n");
H A DDateTag.php9 * Format a date
14 public const CANONICAL = "variable:date";
16 public const DATE_ATTRIBUTE = "date";
17 public const TAG = "date";
25 * @param string $date
31 public static function formatDateString(string $date, string $format = DateTag::DEFAULT_FORMAT, string $lang = null): string argument
33 // https://www.php.net/manual/en/function.date.php
34 // To format dates in other languages, you should use the setlocale() and strftime() functions instead of date().
66 // throw new ExceptionBadSyntax("The language ($lang) / locale ($derivedLocale) is not available as locale on the server. You can't then format the value ($date) in this language.");
70 $date
[all...]
/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DCronExpression.php14 * due to run, the next run date and previous run date of a CRON expression.
16 * minute (seconds are dropped from date time comparisons).
44 * @var int Max iteration count when searching for next run date
167 * @param int $maxIterationCount Max iteration count when searching for next run date
179 * Get a next run date relative to the current date or a specific date
181 * @param string|\DateTime $currentTime Relative calculation date
183 * matching next run date
[all...]
H A DDayOfMonthField.php34 * @return \DateTime Returns the nearest date
59 public function isSatisfiedBy(DateTime $date, $value) argument
66 $fieldValue = $date->format('d');
70 return $fieldValue == $date->format('t');
78 return $date->format('j') == self::getNearestWeekday(
79 $date->format('Y'),
80 $date->format('m'),
85 return $this->isSatisfied($date->format('d'), $value);
88 public function increment(DateTime $date, $invert = false) argument
91 $date
[all...]
H A DDayOfWeekField.php24 public function isSatisfiedBy(DateTime $date, $value) argument
33 $currentYear = $date->format('Y');
34 $currentMonth = $date->format('m');
35 $lastDayOfMonth = $date->format('t');
40 $tdate = clone $date;
49 return $date->format('j') == $lastDayOfMonth;
56 // 0 and 7 are both Sunday, however 7 matches date('N') format ISO-8601
69 if ($date->format('N') != $weekday) {
73 $tdate = clone $date;
86 return $date
107 increment(DateTime $date, $invert = false) global() argument
[all...]
H A DFieldInterface.php14 * @param DateTime $date DateTime object to check
19 public function isSatisfiedBy(DateTime $date, $value); argument
25 * @param DateTime $date DateTime object to change
30 public function increment(DateTime $date, $invert = false); argument
H A DHoursField.php13 public function isSatisfiedBy(DateTime $date, $value) argument
15 return $this->isSatisfied($date->format('H'), $value);
18 public function increment(DateTime $date, $invert = false, $parts = null) argument
24 $timezone = $date->getTimezone();
25 $date->setTimezone(new DateTimeZone('UTC'));
27 $date->modify('-1 hour');
29 $date->modify('+1 hour');
31 $date->setTimezone($timezone);
33 $date->setTime($date
[all...]
H A DMinutesField.php13 public function isSatisfiedBy(DateTime $date, $value) argument
15 return $this->isSatisfied($date->format('i'), $value);
18 public function increment(DateTime $date, $invert = false, $parts = null) argument
22 $date->modify('-1 minute');
24 $date->modify('+1 minute');
35 $current_minute = $date->format('i');
48 $date->modify(($invert ? '-' : '+') . '1 hour');
49 $date->setTime($date->format('H'), $invert ? 59 : 0);
52 $date
[all...]
H A DMonthField.php12 public function isSatisfiedBy(DateTime $date, $value) argument
24 return $this->isSatisfied($date->format('m'), $value);
27 public function increment(DateTime $date, $invert = false) argument
30 $date->modify('last day of previous month');
31 $date->setTime(23, 59);
33 $date->modify('first day of next month');
34 $date->setTime(0, 0);
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php46 "format_date", // Format a date
537 * Format a date
539 * {{#format_date date 'Y-m-d @h:i:s'}}
555 $date = $context->get($keyname);
558 if (is_numeric($date)) {
559 $dt = (new DateTime)->setTimestamp($date);
561 $dt = new DateTime($date);
565 return $date;

12345678910>>...115