Home
last modified time | relevance | path

Searched refs:dt (Results 376 – 400 of 412) sorted by path

1...<<11121314151617

/plugin/webdav/vendor/sabre/vobject/lib/ITip/
H A DBroker.php745 $dt = DateTimeParser::parse($instance['id'], $eventInfo['timezone']);
748 $event->add('DTSTART', $dt, ['VALUE' => 'DATE']);
750 $event->add('DTSTART', $dt);
757 $dt = DateTimeParser::parse($instance['id'], $eventInfo['timezone']);
760 $event->add('RECURRENCE-ID', $dt, ['VALUE' => 'DATE']);
762 $event->add('RECURRENCE-ID', $dt);
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php138 $dt = $this->getDateTimes($timeZone);
139 if (!$dt) {
143 return $dt[0];
178 * @param DateTimeInterface $dt
183 $this->setDateTimes([$dt], $isFloating);
192 * @param DateTimeInterface[] $dt
195 public function setDateTimes(array $dt, $isFloating = false) argument
203 foreach ($dt as $d) {
228 foreach ($dt as $d) {
267 function (DateTimeInterface $dt) use ($hasTime, $isUtc) {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Property/VCard/
H A DDate.php34 public function setDateTime(\DateTimeInterface $dt) argument
36 $this->value = $dt->format('Ymd');
H A DDateAndOrTime.php84 * @param DateTimeInterface $dt
86 public function setDateTime(DateTimeInterface $dt) argument
88 $tz = $dt->getTimeZone();
92 $value = $dt->format('Ymd\\THis\\Z');
95 $value = $dt->format('Ymd\\THisO');
/plugin/webdav/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php149 foreach ($exDate->getDateTimes($this->timeZone) as $dt) {
150 $this->exceptions[$dt->getTimeStamp()] = true;
H A DRDateIterator.php111 * @param DateTimeInterface $dt
113 public function fastForward(DateTimeInterface $dt) argument
115 while ($this->valid() && $this->currentDate < $dt) {
H A DRRuleIterator.php136 * @param DateTimeInterface $dt
138 public function fastForward(DateTimeInterface $dt) argument
140 while ($this->valid() && $this->currentDate < $dt) {
/plugin/webdavclient/vendor/sabre/vobject/bin/
H A Dgenerate_vcards221 $dt = new \DateTime('@' . mt_rand($bdayStart, $bdayEnd)); variable
222 $vcard->add('BDAY', $dt->format('Ymd'));
226 $dt = new \DateTime('@' . mt_rand($bdayStart, $bdayEnd)); variable
227 $vcard->add('BDAY', '--' . $dt->format('md'));
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/
H A DVCalendar.php324 $dt = $child->getDateTimes($timeZone);
328 $dt[0]->setTimeZone(new DateTimeZone('UTC'));
329 $child->setDateTimes($dt);
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DDateTimeParser.php30 * @param string $dt
34 static public function parseDateTime($dt, DateTimeZone $tz = null) { argument
37 …('/^([0-9]{4})([0-1][0-9])([0-3][0-9])T([0-2][0-9])([0-5][0-9])([0-5][0-9])([Z]?)$/',$dt,$matches);
40 throw new LogicException('The supplied iCalendar datetime value is incorrect: ' . $dt);
/plugin/webdavclient/vendor/sabre/vobject/lib/ITip/
H A DBroker.php758 $dt = DateTimeParser::parse($instance['id'], $eventInfo['timezone']);
761 $recur = $event->add('DTSTART', $dt, array('VALUE' => 'DATE'));
763 $recur = $event->add('DTSTART', $dt);
770 $dt = DateTimeParser::parse($instance['id'], $eventInfo['timezone']);
773 $recur = $event->add('RECURRENCE-ID', $dt, array('VALUE' => 'DATE'));
775 $recur = $event->add('RECURRENCE-ID', $dt);
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/ICalendar/
H A DDateTime.php144 $dt = $this->getDateTimes($timeZone);
145 if (!$dt) return null;
147 return $dt[0];
185 public function setDateTime(\DateTime $dt, $isFloating = false) { argument
187 $this->setDateTimes(array($dt), $isFloating);
201 public function setDateTimes(array $dt, $isFloating = false) { argument
210 foreach($dt as $d) {
239 foreach($dt as $d) {
283 function($dt) use ($hasTime, $isUtc) {
286 return $dt->format('Y-m-d\\TH:i:s') . ($isUtc?'Z':'');
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/VCard/
H A DDate.php39 public function setDateTime(\DateTime $dt) { argument
41 $this->value = $dt->format('Ymd');
H A DDateAndOrTime.php90 public function setDateTime(\DateTime $dt) { argument
97 $tz = $dt->getTimeZone();
101 $value = $dt->format('Ymd\\THis\\Z');
104 $value = $dt->format('Ymd\\THisO');
/plugin/webdavclient/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php154 foreach($exDate->getDateTimes($this->timeZone) as $dt) {
155 $this->exceptions[$dt->getTimeStamp()] = true;
H A DRDateIterator.php118 * @param DateTime $dt
121 public function fastForward(\DateTime $dt) { argument
123 while($this->valid() && $this->currentDate < $dt ) {
H A DRRuleIterator.php144 * @param DateTime $dt
147 public function fastForward(\DateTime $dt) { argument
149 while($this->valid() && $this->currentDate < $dt ) {
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DEmClientTest.php49 $dt = $vObject->VEVENT->DTSTART->getDateTime();
50 …his->assertEquals(new \DateTime('2011-10-08 19:30:00', new \DateTimeZone('America/Chicago')), $dt);
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DDateTimeTest.php23 $dt->setTimeZone($tz);
26 $elem->setDateTime($dt);
40 $dt->setTimeZone($tz);
55 $dt->setTimeZone($tz);
58 $elem->setDateTime($dt);
70 $dt->setTimeZone($tz);
73 $elem->setDateTime($dt);
85 $dt->setTimeZone($tz);
102 $dt->setTimeZone($tz);
105 $elem->setValue($dt);
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DDateAndOrTimeTest.php160 $dt = $prop->getDateTime();
161 …$this->assertEquals('2014-04-02T18:37:00-04:00', $dt->format('c'), "For some reason this one faile…
184 $dt = $prop->getDateTime();
192 $this->assertEquals($year . '0407', $dt->format('Ymd'));
207 $dt = $prop->getDateTime();
215 $this->assertEquals($year . '0407', $dt->format('Ymd'));
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Recur/
H A DRRuleIteratorTest.php686 $dt = new DateTime($start, new DateTimeZone($tz));
687 $parser = new RRuleIterator($rule, $dt);
/plugin/wikipediasnippet/
H A Dall.css9 dl.wpsnip > dt {
12 dl.wpsnip > dt cite {
16 dl.wpsnip > dt em {
20 [dir=rtl] dl.wpsnip > dt em {
23 dl.wpsnip > dt em span {
H A Dprint.css4 dl.wpsnip > dt {
8 dl.wpsnip > dt cite a.interwiki {
H A Dstyle.css9 dl.wpsnip > dt {
15 dl.wpsnip > dt em {
20 dl.wpsnip > dt em a {
H A Dsyntax.php124 $wpContent .= ' <dt>'.NL;
127 $wpContent .= ' </dt>'.NL;

1...<<11121314151617