vobject
vobject copied to clipboard
:date: The VObject library for PHP allows you to easily parse and manipulate iCalendar and vCard objects
closes #473. managed to figure out the ```Component\VEvent::isInTimeRange``` method and figured it was the right method for this task.
I'm having to parse a large VCalendar file with over 2000 VEvents and i was looking for a method to help reduce the size of the resulting ```VObject\Document``` as the...
This adds support for `BYMINUTE`, `BYHOUR` in the yearly and monthly mode, verified this to work the same way as icalendar.
I encountered an Invite from exchange server that contains this: BEGIN:VALARM DESCRIPTION:REMINDER TRIGGER;RELATED=START:P ACTION:DISPLAY END:VALARM It has a strange trigger value. This gives the following error in sabre/vobject: feedback": "Undefined...
The `BYYEARDAY` parameter is interpreted incorrectly, the day seems to be off by 1. `BYYEARDAY=1` indicates currently the second day of the year. Seems to be incorrect according to the...
VCARD 3.0 has 'X-ADDRESSBOOKSERVER-MEMBER' property and VCARD 4.0 has 'MEMBER' property.
Here's sample of iCal data: ``` BEGIN:VCALENDAR PRODID:-//Microsoft Corporation//Outlook 10.0 MIMEDIR//EN VERSION:2.0 METHOD:REQUEST BEGIN:VTIMEZONE TZID:Eastern Time BEGIN:STANDARD DTSTART:20161101T020000 RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=1SU;BYMONTH=11 TZOFFSETFROM:-0400 TZOFFSETTO:-0500 TZNAME:Standard Time END:STANDARD BEGIN:DAYLIGHT DTSTART:20160301T020000 RRULE:FREQ=YEARLY;INTERVAL=1;BYDAY=2SU;BYMONTH=3 TZOFFSETFROM:-0500 TZOFFSETTO:-0400 TZNAME:Daylight...
Hello, I understand that there is nothing to change on vobject. My question is what I must do or change on my code, when I want to use timezone correctly....
RFC2426 shows the following example for 3.0: ``` PHOTO;ENCODING=b;TYPE=JPEG:,[base64-data] ``` For my project I´m actually handle only JPEGs in Version 3.0 vCards and adding this property in this way: ```...
For the handling of images that come embedded with the PHOTO property I have to evaluate the mime type (only JPEGs should be considered). I have found no way for...