Hello,
how to read the value of extendedProperty in the code below?

$calID = $calendario;

$query = $gcal->newEventQuery();
$query->setSingleEvents(true);
$query->setOrderby('starttime');
$query->setSortOrder('a');
 $query->setUser($calID);
 $query->setVisibility('private');
 $query->setProjection('full');
$eventFeed = $gcal->getCalendarEventFeed($query);


foreach ($eventFeed as $event) {
     $id = $event->id->text;
     $editLink = $event->getEditLink()->href;
     ///////////// I need get this atribute
here /////////////////////////////
     echo $event->extendedProperty["name"]; // I tried this, but he
did not function…
}

In my xml exist this line: <gd:extendedProperty name="test"
value="-2" />

Tanks...

--

laerte Mercier

--~--~---------~--~----~------------~-------~--~----~
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