Php library or client for caldav server

I have set up the caldav server, specifically http://radicale.org/ , and now I would like to integrate the jquery calendar, for example http://themouette.github.com/jquery-week-calendar/weekcalendar.html , but the problem is interface in php.

so the question is: is there a library written in php for interacting with a radical server or just with another Caldav server? How can I create, modify and delete events?

I don't know how the protocol works, but I thought you could use curl.

Regards Claudio

+1
jquery php calendar caldav
source share
2 answers

If you are looking for a decent SabreDAV Wrapper, you should try http://baikal.codr.fr. It is lightweight, full PHP, and has a nice web admin for managing contacts and calendar.

+3
source share

I am using SabreDAV , the PHP framework for Web / Cal / CardDAV. It defines the servers that you must implement in order to create your own server. This is a fully featured and possibly the best lib in PHP.

It works great and I also use the same calendar;)

+1
source share

All Articles