Hello, I'm wondering how to instruct the
Zend_Gdata_Calendar_EventQuery class to query external calendars, with
the options I specify.
For example, here is my code for displaying my current calendar:

$query = $gdataCal->newEventQuery();
$query->setUser(urlencode("[email protected]"));
$query->setVisibility('private');
$query->setProjection('full');
$query->setOrderby('starttime');
$query->setStartMin($startDate);
$query->setStartMax($endDate);
$query->setFutureevents(true);
$eventFeed = $gdataCal->getCalendarEventFeed($query);

This is fine, but how could I make that also query all my external
calendars, such as US Holidays or a friend's shared calendar?

I can itterate through them with getCalendarListFeed() but I do not
know how to tell the EventQuery to use that, while still being able to
set parameters such as startmin/max.

Any advice?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Calendar Data API" group.
To post to this group, send email to 
[email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to