2012-11-11 17:48:37 +01:00
|
|
|
<?php
|
|
|
|
/** Disable the import plugin for all clients */
|
2016-06-20 15:48:24 +02:00
|
|
|
define('PLUGIN_CALENDARIMPORTER_USER_DEFAULT_ENABLE', true);
|
2013-08-25 15:47:49 +02:00
|
|
|
/** Disable the sync feature for all clients */
|
2014-05-01 15:28:51 +02:00
|
|
|
define('PLUGIN_CALENDARIMPORTER_USER_DEFAULT_ENABLE_SYNC', true); // not yet implemented
|
2012-11-11 17:48:37 +01:00
|
|
|
|
|
|
|
/** The default calendar to import to*/
|
2016-06-20 15:48:24 +02:00
|
|
|
define('PLUGIN_CALENDARIMPORTER_DEFAULT', "Kalender");
|
2013-03-30 14:55:18 +01: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 17:48:37 +01:00
|
|
|
?>
|