2012-11-11 16:48:37 +00:00
|
|
|
<?php
|
|
|
|
/** Disable the import plugin for all clients */
|
|
|
|
define('PLUGIN_CALENDARIMPORTER_USER_DEFAULT_ENABLE', false);
|
2012-12-05 21:31:10 +00:00
|
|
|
/** Disable the export feature for all clients */
|
|
|
|
define('PLUGIN_CALENDARIMPORTER_USER_DEFAULT_ENABLE_EXPORT', false);
|
2013-08-25 13:47:49 +00:00
|
|
|
/** Disable the sync feature for all clients */
|
2014-05-01 13:28:51 +00:00
|
|
|
define('PLUGIN_CALENDARIMPORTER_USER_DEFAULT_ENABLE_SYNC', true); // not yet implemented
|
2012-11-11 16:48:37 +00:00
|
|
|
|
|
|
|
/** The default calendar to import to*/
|
2012-12-30 17:18:39 +00:00
|
|
|
define('PLUGIN_CALENDARIMPORTER_DEFAULT', "calendar");
|
2013-03-30 13:55:18 +00:00
|
|
|
define('PLUGIN_CALENDARIMPORTER_DEFAULT_TIMEZONE', "Europe/Vienna");
|
|
|
|
|
|
|
|
/** Tempory path for uploaded files... */
|
|
|
|
define('PLUGIN_CALENDARIMPORTER_TMP_UPLOAD', "/var/lib/zarafa-webapp/tmp/");
|
2012-11-11 16:48:37 +00:00
|
|
|
?>
|