calendarimporter 2.0.4:
- added compatible with webapp 1.4 - added gui for sync - sync algorithms not jet implemented
This commit is contained in:
parent
ad23a09802
commit
baa184dcd9
@ -1,5 +1,6 @@
|
||||
calendarimporter 2.0.3:
|
||||
- added sync support for ics files
|
||||
calendarimporter 2.0.4:
|
||||
- added compatible with webapp 1.4
|
||||
- added gui for sync - sync algorithms not jet implemented
|
||||
|
||||
calendarimporter 2.0.3:
|
||||
- fixed all day events
|
||||
|
@ -31,12 +31,6 @@ Zarafa.plugins.calendarimporter.ImportPlugin = Ext.extend(Zarafa.core.Plugin, {
|
||||
*/
|
||||
constructor: function (config) {
|
||||
config = config || {};
|
||||
|
||||
Ext.applyIf(config, {
|
||||
name : 'calendarimporter',
|
||||
displayName : _('Calendarimporter Plugin'),
|
||||
about : Zarafa.plugins.calendarimporter.ABOUT
|
||||
});
|
||||
|
||||
Zarafa.plugins.calendarimporter.ImportPlugin.superclass.constructor.call(this, config);
|
||||
},
|
||||
@ -263,6 +257,12 @@ Zarafa.plugins.calendarimporter.ImportPlugin = Ext.extend(Zarafa.core.Plugin, {
|
||||
*############################################################################################################################*/
|
||||
Zarafa.onReady(function() {
|
||||
if(container.getSettingsModel().get("zarafa/v1/plugins/calendarimporter/enable") === true) {
|
||||
container.registerPlugin(new Zarafa.plugins.calendarimporter.ImportPlugin);
|
||||
container.registerPlugin(new Zarafa.core.PluginMetaData({
|
||||
name : 'calendarimporter',
|
||||
displayName : _('Calendarimporter Plugin'),
|
||||
about : Zarafa.plugins.calendarimporter.ABOUT,
|
||||
allowUserDisable : true,
|
||||
pluginConstructor : Zarafa.plugins.calendarimporter.ImportPlugin
|
||||
}));
|
||||
}
|
||||
});
|
||||
|
@ -39,8 +39,9 @@ Zarafa.plugins.calendarimporter.settings.SettingsCalSyncWidget = Ext.extend(Zara
|
||||
|
||||
Ext.applyIf(config, {
|
||||
height : 400,
|
||||
title : _('Calendar Sync settings'),
|
||||
title : _('Calendar Sync settings - Comming soon'),
|
||||
xtype : 'calendarimporter.settingscalsyncwidget',
|
||||
disabled : true,
|
||||
layout : {
|
||||
// override from SettingsWidget
|
||||
type : 'fit'
|
||||
|
Loading…
Reference in New Issue
Block a user