Home
last modified time | relevance | path

Searched refs:timezone (Results 51 – 75 of 96) sorted by path

1234

/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DInlineTest.php545 … testParseTimestampAsDateTimeObject($yaml, $year, $month, $day, $hour, $minute, $second, $timezone) argument
554 $this->assertSame($timezone, $date->format('O'));
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Dintl.rst48 * ``timezone``: The date timezone
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/
H A DIntl.php42 …$date, $dateFormat = 'medium', $timeFormat = 'medium', $locale = null, $timezone = null, $format =… argument
44 $date = twig_date_converter($env, $date, $timezone);
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG368 * fixed timezone on dates as strings
466 …* fixed the timezone used by the date filter and function when the given date contains a timezone
502 …e date filter behavior to always apply the default timezone, except if false is passed as the time…
505 * fixed default timezone usage for the date function
573 * fixed a side-effect of the date filter where the timezone might be changed
613 * fixed the date filter when a DateTime instance is passed with a specific timezone
620 * added a way to set the default global timezone for dates
754 * added timezone support for the date filter
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Ddate.rst5 The timezone support has been added in Twig 1.1.
11 The default timezone support has been added in Twig 1.6.1.
14 The introduction of the false value for the timezone was introduced in Twig 1.11.0
65 By default, the date is displayed by applying the default timezone (the one
67 it by explicitly specifying a timezone:
74 timezone, pass ``false`` as the timezone value:
80 The default timezone can also be set globally by calling ``setTimezone()``:
94 * ``timezone``: The date timezone
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Ddate.rst8 The default timezone support has been added in Twig 1.6.1.
20 You can pass a timezone as the second argument:
38 You can set the default timezone globally by calling ``setTimezone()`` on
53 * ``timezone``: The timezone
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dtemplates.rst233 {{ "now"|date(timezone="Europe/Paris") }}
240 {{ "now"|date('d/m/Y H:i', timezone="Europe/Paris") }}
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php42 protected $timezone = null; variable in Twig\\Extension\\CoreExtension
100 … $this->timezone = $timezone instanceof \DateTimeZone ? $timezone : new \DateTimeZone($timezone);
110 if (null === $this->timezone) {
114 return $this->timezone;
462 if (false !== $timezone) {
463 if (null === $timezone) {
466 $timezone = new \DateTimeZone($timezone);
472 return false !== $timezone ? $date->setTimezone($timezone) : $date;
477 if (false !== $timezone) {
495 if (false !== $timezone) {
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Ddate.test34 {{ date7|date(timezone='Europe/Paris') }}
35 {{ date7|date(timezone='Asia/Hong_Kong') }}
36 {{ date7|date(timezone=false) }}
37 {{ date7|date(timezone='Indian/Mauritius') }}
39 {{ '2010-01-28 15:00:00'|date(timezone="Europe/Paris") }}
40 {{ '2010-01-28 15:00:00'|date(timezone="Asia/Hong_Kong") }}
H A Ddate_namedargs.test4 {{ date|date(format='d/m/Y H:i:s P', timezone='America/Chicago') }}
5 {{ date|date(timezone='America/Chicago', format='d/m/Y H:i:s P') }}
6 {{ date|date('d/m/Y H:i:s P', timezone='America/Chicago') }}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Ddate_namedargs.test5 {{ date(timezone="America/New_York", date=date)|date('d/m/Y H:i:s P', false) }}
/plugin/gtime/gtlib/util/
H A DGTUtil.php232 * @param string $timezone timezone to use
235 public static function decodeTime($time, $timezone = null) { argument
237 if ($timezone != null) {
240 $new_timezone = date_default_timezone_set($timezone);
243 throw new GTException("Unable to set timezone to {$timezone}");
280 if ($timezone != null) {
296 public static function formatTime($time, $timezone = null) { argument
298 if ($timezone != null) {
301 $new_timezone = date_default_timezone_set($timezone);
304 throw new GTException("Unable to set timezone to {$timezone}");
[all …]
/plugin/icalendar/
H A Dfunctions.php63 if ( preg_match( $regex_dtstart_timezone, $vevent, $timezone ) ) {
64 $start_timezone = $timezone[1];
70 if ( preg_match( $regex_dtend_timezone, $vevent, $timezone ) ) {
71 $end_timezone = $timezone[1];
/plugin/icalevents/vendor/sabre/vobject/
H A DCHANGELOG.md9 * Updated to the latest windows timezone data mappings.
10 * #344: Auto-detecting more Outlook 365-generated timezone identifiers.
42 * #312: Correctly extracing timezone in the iTip broker, even when we don't
116 * Updated windows timezone file to support new mexican timezone.
149 * #233: The `+00:00` timezone is now recognized as UTC. (@c960657)
266 * Updated windows timezone mappings to latest unicode version.
327 * Support for "Line Islands Standard Time" windows timezone.
420 * Updated timezone definitions.
442 * Fixed: Issue #28. Incorrect timezone detection for some timezones.
726 * Added: Known Lotus Notes / Domino timezone id's.
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/ITip/
H A DBroker.php555 foreach ($calendar->select('VTIMEZONE') as $timezone) {
556 $icalMsg->add(clone $timezone);
838 $timezone = null;
897 if (is_null($timezone)) {
899 $timezone = $vevent->DTSTART->getDateTime()->getTimeZone();
901 $timezone = $vevent->{'RECURRENCE-ID'}->getDateTime()->getTimeZone();
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DDateTimeTest.php291 $timezone = $this->vcal->createComponent('VTIMEZONE');
292 $timezone->TZID = '/freeassociation.sourceforge.net/Tzfile/Europe/Amsterdam';
293 $timezone->{'X-LIC-LOCATION'} = 'Europe/Amsterdam';
296 $this->vcal->add($timezone);
318 $timezone = $this->vcal->createComponent('VTIMEZONE');
319 $timezone->TZID = 'Moon';
320 $timezone->{'X-LIC-LOCATION'} = 'Moon';
324 $this->vcal->add($timezone);
/plugin/importfacebookevents/nppBackup/
H A Dsyntax.php.2018-03-08_163658.bak190 …$fb_fields="id,name,place,updated_time,timezone,start_time,end_time,event_times,cover,photos{pictu…
202 // Save timezone setting
228 date_default_timezone_set($event['timezone']);
404 // Set the timezone back to the original
H A Dsyntax.php.2018-03-08_163705.bak190 …$fb_fields="id,name,place,updated_time,timezone,start_time,end_time,event_times,cover,photos{pictu…
202 // Save timezone setting
229 date_default_timezone_set($event['timezone']);
403 // Set the timezone back to the original
H A Dsyntax.php.2018-03-08_163718.bak190 …$fb_fields="id,name,place,updated_time,timezone,start_time,end_time,event_times,cover,photos{pictu…
202 // Save timezone setting
229 date_default_timezone_set($event['timezone']);
403 // Set the timezone back to the original
H A Dsyntax.php.2018-03-08_164623.bak190 …$fb_fields="id,name,place,updated_time,timezone,start_time,end_time,event_times,cover,photos{pictu…
202 // Save timezone setting
229 date_default_timezone_set($event['timezone']);
403 // Set the timezone back to the original
H A Dsyntax.php.2018-03-08_164706.bak194 …$fb_fields="id,name,place,updated_time,timezone,start_time,end_time,event_times,cover,photos{pictu…
206 // Save timezone setting
233 date_default_timezone_set($event['timezone']);
407 // Set the timezone back to the original
H A Dsyntax.php.2018-03-08_165027.bak194 …$fb_fields="id,name,place,updated_time,timezone,start_time,end_time,event_times,cover,photos{pictu…
206 // Save timezone setting
233 date_default_timezone_set($event['timezone']);
409 // Set the timezone back to the original
H A Dsyntax.php.2018-03-08_165158.bak194 …$fb_fields="id,name,place,updated_time,timezone,start_time,end_time,event_times,cover,photos{pictu…
206 // Save timezone setting
232 date_default_timezone_set($event['timezone']);
408 // Set the timezone back to the original
H A Dsyntax.php.2018-03-08_165255.bak194 …$fb_fields="id,name,place,updated_time,timezone,start_time,end_time,event_times,cover,photos{pictu…
206 // Save timezone setting
234 date_default_timezone_set($event['timezone']);
410 // Set the timezone back to the original
/plugin/importfacebookevents/
H A Dsyntax.php194 …$fb_fields="id,name,place,updated_time,timezone,start_time,end_time,event_times,cover,photos{pictu…

1234