On Wed, Oct 29, 2008 at 1:00 PM, laerte jose de aquino mercier junior
<[EMAIL PROTECTED]> wrote:
> Thank you for your support,
>
> I understand, but,  implemented in php.
>
>
> $action= actionHoliDays($event->extendedProperty[0]);
>
> function actionHoliDays($string)
> {
>  $holiDay= $string;
>  $arrayHoliDay= explode('=',$diaNaoUtil);
>  return $arrayHoliDay[1];
> }
> --
> Laerte

Laerte,
Zend_Gdata_Calendar_EventEntry->extendedProperty returns an array of
Zend_Gdata_Extension_ExtendedProperty objects:

     
http://framework.zend.com/apidoc/core/Zend_Gdata/Zend_Gdata_Extension_ExtendedProperty.html

So, if you execute '$ep = $event->extendedProperty[0]', you'll then
have to execute '$ep->getName()' to get the extended property name,
and '$ep->getValue()' to get the extended property value.

-- 
Trevor Johns

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