Ejemplo n.º 1
0
/**
 * Adds an extended property to the event specified as a parameter.
 * An extended property is an arbitrary name/value pair that can be added
 * to an event and retrieved via the API.  It is not accessible from the
 * calendar web interface.
 *
 * @param  Zend_Http_Client $client  The authenticated client object
 * @param  string           $eventId The event ID string
 * @param  string           $name    The name of the extended property
 * @param  string           $value   The value of the extended property
 * @return Zend_Gdata_Calendar_EventEntry|null The updated entry
 */
function addExtendedProperty(Zend_Http_Client $client, $eventId, $name = 'http://www.example.com/schemas/2005#mycal.id', $value = '1234')
{
    $gc = new Zend_Gdata_Calendar($client);
    if ($event = getEvent($client, $eventId)) {
        $extProp = $gc->newExtendedProperty($name, $value);
        $extProps = array_merge($event->extendedProperty, array($extProp));
        $event->extendedProperty = $extProps;
        $eventNew = $event->save();
        return $eventNew;
    } else {
        return null;
    }
}