Home
last modified time | relevance | path

Searched refs:vcal (Results 26 – 50 of 94) sorted by last modified time

1234

/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php15 $vcal = VObject\Reader::read($input);
19 $vcal->expand(
312 $vcal = VObject\Reader::read($input);
313 $vcal->expand(
342 $vcal = VObject\Reader::read($input);
360 $vcal = VObject\Reader::read($input);
379 $vcal = VObject\Reader::read($input);
514 $result = $vcal->getBaseComponent();
543 $result = $vcal->getBaseComponent();
671 $vcal = VObject\Reader::read($ics);
[all …]
H A DVCardTest.php264 $vcal = VObject\Reader::read($vcf);
265 $result = $vcal->validate($options);
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DDocumentTest.php23 $vcal = new Component\VCalendar(array(), false);
25 $event = $vcal->createComponent('VEVENT');
28 $vcal->add($event);
30 $prop = $vcal->createProperty('X-PROP','1234256',array('X-PARAM' => '3'));
40 $out = $vcal->serialize();
47 $vcal = new Component\VCalendar(array(), false);
49 $event = $vcal->create('VEVENT');
52 $event = $vcal->create('CALSCALE');
59 $vcal = new Component\VCalendar(array(), false);
60 …$this->assertEquals('Sabre\\VObject\\Property\\Text', $vcal->getClassNameForPropertyValue('TEXT'));
[all …]
H A DIssue26Test.php28 $vcal = Reader::read($input);
29 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
31 $it = new Recur\EventIterator($vcal, 'bae5d57a98');
H A DSlashRTest.php13 $vcal = new Component\VCalendar();
14 $prop = $vcal->add('test', "abc\r\ndef");
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/ICalendar/
H A DAttachParseTest.php14 $vcal = <<<ICS
22 $vcal = Reader::read($vcal);
23 $prop = $vcal->VEVENT->ATTACH;
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DDateTimeTest.php11 protected $vcal; variable in Sabre\\VObject\\Property\\ICalendar\\DateTimeTest
15 $this->vcal = new VCalendar();
25 $elem = $this->vcal->createProperty('DTSTART');
42 $elem = $this->vcal->createProperty('DTSTART');
57 $elem = $this->vcal->createProperty('DTSTART');
283 $this->vcal->add($event);
284 $this->vcal->add($timezone);
311 $this->vcal->add($event);
312 $this->vcal->add($timezone);
346 $vcal = new VCalendar();
[all …]
H A DDurationTest.php12 $vcal = new VCalendar();
13 $event = $vcal->add('VEVENT', array('DURATION' => array('PT1H')));
H A DRecurTest.php11 $vcal = new VCalendar();
12 $recur = $vcal->add('RRULE', 'FREQ=Daily');
28 $vcal = new VCalendar();
29 $recur = $vcal->add('RRULE', 'FREQ=Daily');
36 $vcal = new VCalendar();
37 … $recur = $vcal->add('RRULE', array('FREQ'=>'DAILY', 'BYDAY'=>'mo,tu', 'BYMONTH' => array(0,1)));
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/ITip/
H A DBrokerTester.php48 $vcal = Reader::read($input);
50 foreach($vcal->getComponents() as $mainComponent) {
55 $message->message = $vcal;
56 $message->method = isset($vcal->METHOD)?$vcal->METHOD->getValue():null;
59 $message->sequence = isset($vcal->VEVENT[0])?(string)$vcal->VEVENT[0]->SEQUENCE:null;
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DIssue48Test.php30 $vcal = Reader::read($input);
31 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
33 $it = new Recur\EventIterator($vcal, 'foo');
H A DIssue50Test.php104 $vcal = Reader::read($input);
105 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
107 $it = new Recur\EventIterator($vcal, '1aef0b27-3d92-4581-829a-11999dd36724');
H A DByMonthInDailyTest.php38 $vcal = Reader::read($ics);
39 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
41 $vcal->expand(new DateTime('2013-09-28'), new DateTime('2014-09-11'));
43 foreach ($vcal->VEVENT as $event) {
H A DBySetPosHangTest.php33 $vcal = Reader::read($ics);
34 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
36 $vcal->expand(new DateTime('2015-01-01'), new DateTime('2016-01-01'));
38 foreach ($vcal->VEVENT as $event) {
H A DExpandFloatingTimesTest.php26 $vcal = Reader::read($input);
27 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
29 $vcal->expand(new DateTime('2015-01-01'), new DateTime('2015-01-31'));
31 $result = $vcal->serialize();
81 $vcal = Reader::read($input);
82 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
84 …$vcal->expand(new DateTime('2015-01-01'), new DateTime('2015-01-31'), new \DateTimeZone('Europe/Be…
86 $result = $vcal->serialize();
H A DIncorrectExpandTest.php35 $vcal = Reader::read($input);
36 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
38 $vcal->expand(new DateTime('2011-01-01'), new DateTime('2014-01-01'));
40 $result = $vcal->serialize();
H A DInfiniteLoopProblemTest.php15 $this->vcal = new VCalendar();
25 $ev = $this->vcal->createComponent('VEVENT');
39 $ev = $this->vcal->createComponent('VEVENT');
53 $this->vcal->add($ev);
55 $it = new Recur\EventIterator($this->vcal,'uuid');
86 $ev = $this->vcal->createComponent('VEVENT');
90 $this->vcal->add($ev);
92 $it = new Recur\EventIterator($this->vcal,'uuid');
H A DMainTest.php14 $vcal = new VCalendar();
23 $vcal->add($ev);
45 $vcal->add($ev);
85 $vcal->add($ev);
138 $vcal->add($ev);
185 $vcal->add($ev);
227 $vcal->add($ev);
280 $vcal->add($ev);
333 $vcal->add($ev);
386 $vcal->add($ev);
[all …]
H A DMissingOverriddenTest.php34 $vcal = Reader::read($input);
35 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
37 $vcal->expand(new DateTime('2011-01-01'), new DateTime('2015-01-01'));
39 $result = $vcal->serialize();
H A DNoInstancesTest.php33 $vcal = Reader::read($input);
34 $this->assertInstanceOf('Sabre\\VObject\\Component\\VCalendar', $vcal);
36 $it = new EventIterator($vcal, 'foo');
H A DOverrideFirstEventTest.php29 $vcal = Reader::read($input);
30 $vcal->expand(new DateTime('2014-08-01'), new DateTime('2014-09-01'));
68 $newIcs = $vcal->serialize();
92 $vcal = Reader::read($input);
93 $vcal->expand(new DateTime('2014-08-01'), new DateTime('2014-08-19'));
113 $newIcs = $vcal->serialize();
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/
H A DVCalendarTest.php15 $vcal = VObject\Reader::read($input);
19 $vcal->expand(
312 $vcal = VObject\Reader::read($input);
313 $vcal->expand(
342 $vcal = VObject\Reader::read($input);
360 $vcal = VObject\Reader::read($input);
379 $vcal = VObject\Reader::read($input);
514 $result = $vcal->getBaseComponent();
543 $result = $vcal->getBaseComponent();
671 $vcal = VObject\Reader::read($ics);
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/ICalendar/
H A DAttachParseTest.php14 $vcal = <<<ICS
22 $vcal = Reader::read($vcal);
23 $prop = $vcal->VEVENT->ATTACH;
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DDurationTest.php12 $vcal = new VCalendar();
13 $event = $vcal->add('VEVENT', array('DURATION' => array('PT1H')));
H A DRecurTest.php11 $vcal = new VCalendar();
12 $recur = $vcal->add('RRULE', 'FREQ=Daily');
28 $vcal = new VCalendar();
29 $recur = $vcal->add('RRULE', 'FREQ=Daily');
36 $vcal = new VCalendar();
37 … $recur = $vcal->add('RRULE', array('FREQ'=>'DAILY', 'BYDAY'=>'mo,tu', 'BYMONTH' => array(0,1)));

1234