v1.0.3: 01.05.2014

- compatible with WebApp 1.5 and WebApp 1.6
This commit is contained in:
Christoph Haas 2014-05-01 13:29:23 +00:00
parent e29119fc1d
commit 8ddce98d22
3 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
<project default="all"> <project default="all">
<!--############# CONFIGURE ALL PROPERTIES FOR THE REPLACER HERE ################--> <!--############# CONFIGURE ALL PROPERTIES FOR THE REPLACER HERE ################-->
<property name="plugin_version" value="1.0.2"/> <property name="plugin_version" value="1.0.3"/>
<!-- EOC --> <!-- EOC -->
<property name="root-folder" value="${basedir}/../"/> <property name="root-folder" value="${basedir}/../"/>

View File

@ -1,3 +1,6 @@
v1.0.3: 01.05.2014
- compatible with WebApp 1.5 and WebApp 1.6
v1.0.2: 06.11.2013 v1.0.2: 06.11.2013
- fixed: importing attachments - fixed: importing attachments
- fixed: plugin not enabled bug - fixed: plugin not enabled bug

View File

@ -230,13 +230,10 @@ Zarafa.plugins.contactimporter.ImportPlugin = Ext.extend(Zarafa.core.Plugin, {
* STARTUP * STARTUP
*############################################################################################################################*/ *############################################################################################################################*/
Zarafa.onReady(function() { Zarafa.onReady(function() {
if(container.getSettingsModel().get("zarafa/v1/plugins/contactimporter/enable") === true) { container.registerPlugin(new Zarafa.core.PluginMetaData({
container.registerPlugin(new Zarafa.core.PluginMetaData({ name : 'contactimporter',
name : 'contactimporter', displayName : _('Contactimporter Plugin'),
displayName : _('Contactimporter Plugin'), about : Zarafa.plugins.contactimporter.ABOUT,
about : Zarafa.plugins.contactimporter.ABOUT, pluginConstructor : Zarafa.plugins.contactimporter.ImportPlugin
allowUserDisable : true, }));
pluginConstructor : Zarafa.plugins.contactimporter.ImportPlugin
}));
}
}); });