Thank you am63 for your response,
Yes I read   the API Reference for PHP Zend Gdata framework, I also do
research on the internet, but I failed, so I’d like to change name and
summary information of  calendars (not for a events alos of not the
defaut calendar but for all calendars I have)

examples :
For adding a new calebdar I do this :
-------------------
$appCal = $gdataCal -> newListEntry();
$appCal -> title = $gdataCal-> newTitle($titre);
$desc=$etat.';'.$annee_univ.';'.$formation.';'.date("Y-m-d H:i:s");
$appCal -> summary = $gdataCal-> newSummary($desc);
$own_cal = "http://www.google.com/calendar/feeds/default/owncalendars/full";;
$gdataCal->insertEvent($appCal, $own_cal);
----------------------

For deleting :
function deleteCalandar ($client,$url)
{
       try {
        $gdataCal = new Zend_Gdata_Calendar($client);
        $response = $gdataCal ->performHttpRequest('DELETE',"$url");
        } catch (Zend_Gdata_App_Exception $e) {
          die ("<p class='erreur'>Erreurr : Elément non éxisté !</p>") .;
        }
}
-----
But for updating what can I do pleaze : ?????????
Thank you for your help.



2011/3/5, am63 <[email protected]>:
> All you have to do is to read the API Reference for PHP Zend Gdata
> framework...
>
> http://framework.zend.com/manual/en/zend.gdata.calendar.html
>
> --
> 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
>


-- 
Cordialement
Rachid LHASNAOUI
www.lmr.venez.fr
+336 73 24 17 02

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