Small update for Kopano Webapp 3.1
This commit is contained in:
parent
c2f26697fb
commit
16182e7487
2
Makefile
Normal file
2
Makefile
Normal file
@ -0,0 +1,2 @@
|
||||
default:
|
||||
ant deploy; cp -r /home/osboxes/Documents/kopano-webapp-3.2.0.285/deploy/plugins/contactimporter /usr/share/kopano-webapp/plugins/
|
@ -12,9 +12,11 @@ cd contactimporter
|
||||
ant deploy
|
||||
```
|
||||
|
||||
Make sure to run "composer install" in the php directory!
|
||||
|
||||
### Usage
|
||||
Rightclick a contactfolder or contact entry to export it as vCard.
|
||||
|
||||
Rightclick a contactfolder to import a vCard.
|
||||
|
||||
Rightclick a vCard attachment to import it.
|
||||
Rightclick a vCard attachment to import it.
|
||||
|
@ -1,3 +1,8 @@
|
||||
v2.0.1: 01.11.2016
|
||||
- compatible with Kopano Webapp 3.1
|
||||
- exporting contacts implemented
|
||||
- GUI improvements
|
||||
|
||||
v1.0.3: 01.05.2014
|
||||
- compatible with WebApp 1.5 and WebApp 1.6
|
||||
|
||||
@ -12,4 +17,4 @@ v1.0.1: 03.10.2013
|
||||
|
||||
v1.0: 24.6.2013
|
||||
- import vcards (1 or more vcards in a file)
|
||||
- chooseable destination addressbook
|
||||
- chooseable destination addressbook
|
||||
|
@ -6,5 +6,5 @@ define('PLUGIN_CONTACTIMPORTER_USER_DEFAULT_ENABLE', false);
|
||||
define('PLUGIN_CONTACTIMPORTER_DEFAULT', "Kontakte");
|
||||
|
||||
/** Tempory path for uploaded files... */
|
||||
define('PLUGIN_CONTACTIMPORTER_TMP_UPLOAD', "/var/lib/zarafa-webapp/tmp/");
|
||||
define('PLUGIN_CONTACTIMPORTER_TMP_UPLOAD', "/var/lib/kopano-webapp/tmp/");
|
||||
?>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<!DOCTYPE plugin SYSTEM "manifest.dtd">
|
||||
<plugin version="2">
|
||||
<info>
|
||||
<version>2.0.0</version>
|
||||
<version>2.0.1</version>
|
||||
<name>contactimporter</name>
|
||||
<title>VCF Contact Importer/Exporter</title>
|
||||
<author>Christoph Haas</author>
|
||||
|
@ -38,7 +38,7 @@ class ContactModule extends Module
|
||||
*/
|
||||
public function __construct($id, $data)
|
||||
{
|
||||
parent::Module($id, $data);
|
||||
parent::__construct($id, $data);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -33,9 +33,7 @@ class Plugincontactimporter extends Plugin
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
function Plugincontactimporter()
|
||||
{
|
||||
}
|
||||
function __construct() {}
|
||||
|
||||
/**
|
||||
* Function initializes the Plugin and registers all hooks
|
||||
|
Loading…
Reference in New Issue
Block a user