Lines Matching refs:ev

15         $ev = $vcal->createComponent('VEVENT');
16 $ev->UID = 'bla';
17 $ev->RRULE = 'FREQ=DAILY;BYHOUR=10;BYMINUTE=5;BYSECOND=16;BYWEEKNO=32;BYYEARDAY=100,200';
21 $ev->add($dtStart);
23 $vcal->add($ev);
25 $it = new EventIterator($vcal,(string)$ev->uid);
38 $ev = $vcal->createComponent('VEVENT');
39 $ev->RRULE = 'FREQ=SMONTHLY;INTERVAL=3;UNTIL=20111025T000000Z';
40 $ev->UID = 'foo';
44 $ev->add($dtStart);
45 $vcal->add($ev);
47 $it = new EventIterator($vcal,(string)$ev->uid);
77 $ev = $vcal->createComponent('VEVENT');
79 $ev->UID = 'bla';
80 $ev->RRULE = 'FREQ=HOURLY;INTERVAL=3;UNTIL=20111025T000000Z';
84 $ev->add($dtStart);
85 $vcal->add($ev);
87 $it = new EventIterator($vcal,$ev->uid);
129 $ev = $vcal->createComponent('VEVENT');
131 $ev->UID = 'bla';
132 $ev->RRULE = 'FREQ=DAILY;INTERVAL=3;UNTIL=20111025T000000Z';
136 $ev->add($dtStart);
138 $vcal->add($ev);
140 $it = new EventIterator($vcal,$ev->uid);
177 $ev = $vcal->createComponent('VEVENT');
179 $ev->UID = 'bla';
183 $ev->add($dtStart);
185 $vcal->add($ev);
187 $it = new EventIterator($vcal,$ev->uid);
218 $ev = $vcal->createComponent('VEVENT');
220 $ev->UID = 'bla';
221 $ev->RRULE = 'FREQ=DAILY;BYDAY=SA,SU;BYHOUR=6,7';
225 $ev->add($dtStart);
227 $vcal->add($ev);
229 $it = new EventIterator($vcal,(string)$ev->uid);
271 $ev = $vcal->createComponent('VEVENT');
273 $ev->UID = 'bla';
274 $ev->RRULE = 'FREQ=DAILY;INTERVAL=2;BYHOUR=10,11,12,13,14,15';
278 $ev->add($dtStart);
280 $vcal->add($ev);
282 $it = new EventIterator($vcal,(string)$ev->uid);
324 $ev = $vcal->createComponent('VEVENT');
326 $ev->UID = 'bla';
327 $ev->RRULE = 'FREQ=DAILY;INTERVAL=2;BYDAY=TU,WE,FR';
331 $ev->add($dtStart);
333 $vcal->add($ev);
335 $it = new EventIterator($vcal,(string)$ev->uid);
377 $ev = $vcal->createComponent('VEVENT');
379 $ev->UID = 'bla';
380 $ev->RRULE = 'FREQ=WEEKLY;INTERVAL=2;COUNT=10';
384 $ev->add($dtStart);
386 $vcal->add($ev);
388 $it = new EventIterator($vcal,(string)$ev->uid);
428 $ev = $vcal->createComponent('VEVENT');
430 $ev->UID = 'bla';
431 $ev->RRULE = 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=MO;BYHOUR=8,9,10';
435 $ev->add($dtStart);
437 $vcal->add($ev);
439 $it = new EventIterator($vcal,(string)$ev->uid);
484 $ev = $vcal->createComponent('VEVENT');
486 $ev->UID = 'bla';
487 $ev->RRULE = 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU';
491 $ev->add($dtStart);
493 $vcal->add($ev);
495 $it = new EventIterator($vcal,(string)$ev->uid);
537 $ev = $vcal->createComponent('VEVENT');
539 $ev->UID = 'bla';
540 $ev->RRULE = 'FREQ=WEEKLY;INTERVAL=2;BYDAY=TU,WE,FR;WKST=SU';
544 $ev->add($dtStart);
546 $vcal->add($ev);
548 $it = new EventIterator($vcal,(string)$ev->uid);
590 $ev = $vcal->createComponent('VEVENT');
592 $ev->UID = 'bla';
593 $ev->RRULE = 'FREQ=MONTHLY;INTERVAL=3;COUNT=5';
597 $ev->add($dtStart);
599 $vcal->add($ev);
601 $it = new EventIterator($vcal,(string)$ev->uid);
636 $ev = $vcal->createComponent('VEVENT');
638 $ev->UID = 'bla';
639 $ev->RRULE = 'FREQ=MONTHLY;INTERVAL=2;COUNT=12';
643 $ev->add($dtStart);
645 $vcal->add($ev);
647 $it = new EventIterator($vcal,(string)$ev->uid);
689 $ev = $vcal->createComponent('VEVENT');
691 $ev->UID = 'bla';
692 $ev->RRULE = 'FREQ=MONTHLY;INTERVAL=5;COUNT=9;BYMONTHDAY=1,31,-7';
696 $ev->add($dtStart);
698 $vcal->add($ev);
700 $it = new EventIterator($vcal,(string)$ev->uid);
742 $ev = $vcal->createComponent('VEVENT');
744 $ev->UID = 'bla';
745 $ev->RRULE = 'FREQ=MONTHLY;INTERVAL=2;COUNT=16;BYDAY=MO,-2TU,+1WE,3TH';
749 $ev->add($dtStart);
751 $vcal->add($ev);
753 $it = new EventIterator($vcal,(string)$ev->uid);
798 $ev = $vcal->createComponent('VEVENT');
800 $ev->UID = 'bla';
801 $ev->RRULE = 'FREQ=MONTHLY;COUNT=10;BYDAY=MO;BYMONTHDAY=1';
805 $ev->add($dtStart);
807 $vcal->add($ev);
809 $it = new EventIterator($vcal,(string)$ev->uid);
848 $ev = $vcal->createComponent('VEVENT');
850 $ev->UID = 'bla';
851 $ev->RRULE = 'FREQ=MONTHLY;COUNT=10;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=1,-1';
855 $ev->add($dtStart);
857 $vcal->add($ev);
859 $it = new EventIterator($vcal,(string)$ev->uid);
898 $ev = $vcal->createComponent('VEVENT');
900 $ev->UID = 'bla';
901 $ev->RRULE = 'FREQ=YEARLY;COUNT=10;INTERVAL=3';
905 $ev->add($dtStart);
907 $vcal->add($ev);
909 $it = new EventIterator($vcal,(string)$ev->uid);
948 $ev = $vcal->createComponent('VEVENT');
950 $ev->UID = 'bla';
951 $ev->RRULE = 'FREQ=YEARLY;COUNT=3';
955 $ev->add($dtStart);
957 $vcal->add($ev);
959 $it = new EventIterator($vcal,(string)$ev->uid);
991 $ev = $vcal->createComponent('VEVENT');
993 $ev->UID = 'bla';
994 $ev->RRULE = 'FREQ=YEARLY;COUNT=8;INTERVAL=4;BYMONTH=4,10';
998 $ev->add($dtStart);
1000 $vcal->add($ev);
1002 $it = new EventIterator($vcal,(string)$ev->uid);
1039 $ev = $vcal->createComponent('VEVENT');
1041 $ev->UID = 'bla';
1042 $ev->RRULE = 'FREQ=YEARLY;COUNT=8;INTERVAL=5;BYMONTH=4,10;BYDAY=1MO,-1SU';
1046 $ev->add($dtStart);
1048 $vcal->add($ev);
1050 $it = new EventIterator($vcal,(string)$ev->uid);
1087 $ev = $vcal->createComponent('VEVENT');
1089 $ev->UID = 'bla';
1090 $ev->RRULE = 'FREQ=YEARLY;COUNT=8;INTERVAL=5;BYMONTH=4,10;BYDAY=1MO,-1SU';
1094 $ev->add($dtStart);
1096 $vcal->add($ev);
1098 $it = new EventIterator($vcal,(string)$ev->uid);
1127 $ev = $vcal->createComponent('VEVENT');
1129 $ev->UID = 'bla';
1130 $ev->RRULE = 'FREQ=YEARLY;COUNT=10';
1141 $ev->add($dtStart);
1142 $ev->add($exDate1);
1143 $ev->add($exDate2);
1145 $vcal->add($ev);
1147 $it = new EventIterator($vcal,(string)$ev->uid);
1357 $ev = $vcal->createComponent('VEVENT');
1359 $ev->UID = 'bla';
1360 $ev->RDATE = array(
1367 $ev->add($dtStart);
1369 $vcal->add($ev);
1371 $it = new EventIterator($vcal,$ev->uid);