// Create a new entry using the calendar service's magic factory method 
                $event = $service->newEventEntry(); 
                
                // Populate the event with the desired information 
                // Note that each attribute is crated as an instance of a 
matching class 
                $event->title = $service->newTitle("<a 
href=\"$url\">$name</a>"); 
                $event->where = array($service->newWhere($location)); 
                $event->content = $service->newContent($description); 
        
This is what i am not sure of. 

$event->transparency = $service->newTransparency('*busy*'); 

How do i do this correctly? 

-- 
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://code.google.com/apis/calendar/community/forum.html

Reply via email to