Home
last modified time | relevance | path

Searched refs:dateFormat (Results 1 – 25 of 132) sorted by relevance

123456

/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DAbstractTimeType.php77 protected $dateFormat;
86 * @param string $dateFormat Represents the furthest datetime element to represent in the datetime object.
89 public function __construct(?DateTimeInterface $dateTime, string $dateFormat, string $tzFormat)
91 $this->setDateTimeFormat($dateFormat);
146 return $this->dateFormat; argument
150 * @param string $dateFormat
153 public function setDateTimeFormat(string $dateFormat)
155 if (!in_array($dateFormat, $this->validDateFormats)) {
158 $dateFormat,
162 $this->dateFormat
75 protected $dateFormat; global() variable in FreeDSx\\Asn1\\Type\\AbstractTimeType
82 __construct(\\DateTime $dateTime = null, string $dateFormat, string $tzFormat) global() argument
169 withTag($tagNumber, int $class, bool $isConstructed, \\DateTime $dateTime = null, string $dateFormat, string $tzFormat) global() argument
[all...]
H A DUtcTimeType.php63 public function __construct(?DateTimeInterface $dateTime = null, string $dateFormat = self::FORMAT_SECONDS, string $tzFormat = self::TZ_UTC)
65 parent::__construct($dateTime, $dateFormat, $tzFormat);
61 __construct(\\DateTime $dateTime = null, string $dateFormat = self FORMAT_SECONDS, string $tzFormat = self TZ_UTC) global() argument
H A DGeneralizedTimeType.php81 public function __construct(?DateTimeInterface $dateTime = null, string $dateFormat = self::FORMAT_FRACTIONS, string $tzFormat = self::TZ_UTC)
83 parent::__construct($dateTime, $dateFormat, $tzFormat);
79 __construct(\\DateTime $dateTime = null, string $dateFormat = self FORMAT_FRACTIONS, string $tzFormat = self TZ_UTC) global() argument
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DNormalizerFormatter.php28 protected $dateFormat; variable in Monolog\\Formatter\\NormalizerFormatter
38 * @param string|null $dateFormat The format of the timestamp: one supported by DateTime::format
40 public function __construct(?string $dateFormat = null) argument
42 $this->dateFormat = null === $dateFormat ? static::SIMPLE_DATE : $dateFormat;
72 return $this->dateFormat;
75 public function setDateFormat(string $dateFormat): self argument
77 $this->dateFormat = $dateFormat;
263 if ($this->dateFormat === self::SIMPLE_DATE && $date instanceof DateTimeImmutable) {
267 return $date->format($this->dateFormat);
H A DWildfireFormatter.php44 * @param string|null $dateFormat The format of the timestamp: one supported by DateTime::format
46 public function __construct(?string $dateFormat = null) argument
48 parent::__construct($dateFormat);
H A DHtmlFormatter.php43 * @param string|null $dateFormat The format of the timestamp: one supported by DateTime::format
45 public function __construct(?string $dateFormat = null) argument
47 parent::__construct($dateFormat);
H A DLineFormatter.php39 …* @param string|null $dateFormat The format of the timestamp: one supported by Dat…
43 …public function __construct(?string $format = null, ?string $dateFormat = null, bool $allowInlineL… argument
49 parent::__construct($dateFormat);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
H A DPsrLogMessageProcessor.php28 private $dateFormat; variable in Monolog\\Processor\\PsrLogMessageProcessor
34 …* @param string|null $dateFormat The format of the timestamp: one supported by DateTi…
37 public function __construct(?string $dateFormat = null, bool $removeUsedContextFields = false) argument
39 $this->dateFormat = $dateFormat;
62 if (!$this->dateFormat && $val instanceof \Monolog\DateTimeImmutable) {
67 … $replacements[$placeholder] = $val->format($this->dateFormat ?: static::SIMPLE_DATE);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DRotatingFileHandler.php44 protected $dateFormat; variable in Monolog\\Handler\\RotatingFileHandler
58 $this->dateFormat = static::FILE_PER_DAY;
87 public function setFilenameFormat(string $filenameFormat, string $dateFormat): self argument
89 if (!preg_match('{^[Yy](([/_.-]?m)([/_.-]?d)?)?$}', $dateFormat)) {
103 $this->dateFormat = $dateFormat;
178 [$fileInfo['filename'], date($this->dateFormat)],
/plugin/icalendar/
H A Dfunctions.php28 * @param dateFormat dateformat for displaying the start and end date.
32 function parse_vevent( $vevent, $dateFormat="%Y-%m-%d", $timeFormat="%H:%M" ) { argument
86 $entry['startdate'] = strftime($dateFormat, $entry['startunixdate']);
95 $entry['enddate'] = strftime($dateFormat, $entry['endunixdate']);
105 $entry['startdate'] = strftime($dateFormat, $entry['startunixdate']);
112 $entry['enddate'] = strftime($dateFormat, $entry['endunixdate']);
H A Dsyntax.php282 $dateFormat = $this->getConf('dformat') ? $this->getConf('dformat') : $conf['dformat'];
301 $entry = parse_vevent( $vevent, $dateFormat );
/plugin/loglog/
H A Dadmin.php62 $dateFormat = $this->getConf('admin_date_format') ?: $conf['dformat'];
83 echo '<p>' . $this->getLang('range') . ' ' . strftime($dateFormat, $min) .
84 ' - ' . strftime($dateFormat, $max) . '</p>';
138 echo '<td>' . strftime($dateFormat, $line['dt']) . '</td>';
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/
H A DAsn1.php187 * @param string $dateFormat
191 public static function generalizedTime(?DateTimeInterface $dateTime = null, string $dateFormat = AbstractTimeType::FORMAT_FRACTIONS, string $tzFormat = AbstractTimeType::TZ_UTC): GeneralizedTimeType
193 return new GeneralizedTimeType($dateTime, $dateFormat, $tzFormat);
198 * @param string $dateFormat
202 public static function utcTime(?DateTimeInterface $dateTime = null, string $dateFormat = AbstractTimeType::FORMAT_SECONDS, string $tzFormat = AbstractTimeType::TZ_UTC): UtcTimeType
204 return new UtcTimeType($dateTime, $dateFormat, $tzFormat);
190 generalizedTime(\\DateTime $dateTime = null, string $dateFormat = AbstractTimeType FORMAT_FRACTIONS, string $tzFormat = AbstractTimeType TZ_UTC) global() argument
201 utcTime(\\DateTime $dateTime = null, string $dateFormat = AbstractTimeType FORMAT_SECONDS, string $tzFormat = AbstractTimeType TZ_UTC) global() argument
/plugin/icalevents/
H A Dsyntax-impl.php217 $dateFormat = $dformat ?: $this->getConf('dformat') ?: '%Y/%m/%d';
255 … = $this->renderEvent($mode, $renderer, $event, $template, $dateFormat, $timeFormat);
306 * @param string $dateFormat
311 …function renderEvent($mode, Doku_Renderer $renderer, $event, $template, $dateFormat, $timeFormat) { argument
337 $dt = $this->handleDatetime($event, $dateFormat, $timeFormat);
414 function handleDatetime($event, $dateFormat, $timeFormat) { argument
424 $dt['datestring'] = strftime($dateFormat, $dtImmutable->getTimestamp());
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/
H A DIntl.php42 function twig_localized_date_filter(Twig_Environment $env, $date, $dateFormat = 'medium', $timeForm… argument
57 $formatValues[$dateFormat],
69 $formatValues[$dateFormat],
/plugin/structtasks/meta/
H A DUtilities.php88 function dateFormat($schema) { function in dokuwiki\\plugin\\structtasks\\meta\\Utilities
109 $dateformat = $this->dateFormat($schema);
111 $new_data[$schema]['date_format'] = $this->dateFormat($schema);
/plugin/struct/script/
H A DEntryEditor.js23 dateFormat: 'yy-mm-dd',
36 dateFormat: 'yy-mm-dd',
/plugin/bureaucracy-au/script/
H A Ddatepicker.js7 dateFormat: "dd-mm-yy",
/plugin/bureaucracyau/script/
H A Ddatepicker.js7 dateFormat: "dd-mm-yy",
/plugin/bureaucracy/script/
H A Ddatepicker.js7 dateFormat: "yy-mm-dd",
/plugin/bez/scripts/
H A Dactivity_report.js4 dateFormat: "yy-mm-dd"
H A Dreport.js4 dateFormat: "yy-mm-dd"
H A Dtask_form.js5 dateFormat: "yy-mm-dd"
/plugin/runcommand/
H A Dsyntax.php448 function renderJQueryDate($name, $dateFormat) { argument
452 if ($dateFormat == null) { // If the user don't give the date format it use the default format.
453 $dateFormat = $this->getConf('rc_default_dateformat');
455 return "jQuery( \"#".$id."\" ).datepicker({ dateFormat: '".$dateFormat."' }); \n";
/plugin/davcal/datetimepicker-2.4.5/
H A Djquery.datetimepicker.js933 keyDate = hDate.date.dateFormat(options.formatDate);
961 keyDate = dateTest.dateFormat(options.formatDate);
1030 … options.minDate = _xdsoft_datetime.strToDateTime(options.minDate).dateFormat(options.formatDate);
1034 … options.maxDate = _xdsoft_datetime.strToDateTime(options.maxDate).dateFormat(options.formatDate);
1140 $(this).val((_xdsoft_datetime.now()).dateFormat(options.format));
1353 return _this.currentTime.dateFormat(options.format);
1526 } else if (options.disabledDates.indexOf(start.dateFormat(options.formatDate)) !== -1) {
1540 …r.data('changed')) && _xdsoft_datetime.currentTime.dateFormat(options.formatDate) === start.dateFo…
1544 if (today.dateFormat(options.formatDate) === start.dateFormat(options.formatDate)) {
1552 if (options.highlightedDates[start.dateFormat(options.formatDate)] !== undefined) {
[all …]

123456