2012-05-01 22:28:33 +02:00
|
|
|
A calendar module for Roundcube
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
This plugin currently supports a local database as well as a Kolab groupware
|
|
|
|
server as backends for calendar and event storage. For both drivers, some
|
|
|
|
initialization of the local database is necessary. To do so, execute the
|
2013-01-18 09:40:48 +01:00
|
|
|
SQL commands in drivers/<yourchoice>/SQL/<yourdatabase>.initial.sql
|
2012-05-01 22:28:33 +02:00
|
|
|
|
2012-10-04 17:08:37 +02:00
|
|
|
The client-side calendar UI relies on the "fullcalendar" project by Adam Arshaw
|
2012-05-01 22:28:33 +02:00
|
|
|
with extensions made for the use in Roundcube. All changes are published in
|
|
|
|
an official fork at https://github.com/roundcube/fullcalendar
|
|
|
|
|
2013-07-18 12:49:27 +02:00
|
|
|
For some general calendar-based operations such as alarms handling or iCal
|
|
|
|
parsing/exporting this plugins requires the `libcalendaring` plugin which
|
|
|
|
is also part of the Kolab Roundcube Plugins repository. Make sure that plugin
|
|
|
|
is installed and configured correctly.
|
|
|
|
|
2012-05-01 22:28:33 +02:00
|
|
|
For recurring event computation, some utility classes from the Horde project
|
|
|
|
are used. They are packaged in a slightly modified version with this plugin.
|
|
|
|
|
2012-07-06 17:15:45 +02:00
|
|
|
IMPORTANT
|
|
|
|
---------
|
|
|
|
The calendar module makes heavy use of PHP's DateTime as well as DateInterval
|
|
|
|
classes. The latter one requires at least PHP 5.3.0 to run.
|