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,6 +12,8 @@ cd contactimporter
|
|||||||
ant deploy
|
ant deploy
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Make sure to run "composer install" in the php directory!
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
Rightclick a contactfolder or contact entry to export it as vCard.
|
Rightclick a contactfolder or contact entry to export it as vCard.
|
||||||
|
|
||||||
|
@ -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
|
v1.0.3: 01.05.2014
|
||||||
- compatible with WebApp 1.5 and WebApp 1.6
|
- compatible with WebApp 1.5 and WebApp 1.6
|
||||||
|
|
||||||
|
@ -6,5 +6,5 @@ define('PLUGIN_CONTACTIMPORTER_USER_DEFAULT_ENABLE', false);
|
|||||||
define('PLUGIN_CONTACTIMPORTER_DEFAULT', "Kontakte");
|
define('PLUGIN_CONTACTIMPORTER_DEFAULT', "Kontakte");
|
||||||
|
|
||||||
/** Tempory path for uploaded files... */
|
/** 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">
|
<!DOCTYPE plugin SYSTEM "manifest.dtd">
|
||||||
<plugin version="2">
|
<plugin version="2">
|
||||||
<info>
|
<info>
|
||||||
<version>2.0.0</version>
|
<version>2.0.1</version>
|
||||||
<name>contactimporter</name>
|
<name>contactimporter</name>
|
||||||
<title>VCF Contact Importer/Exporter</title>
|
<title>VCF Contact Importer/Exporter</title>
|
||||||
<author>Christoph Haas</author>
|
<author>Christoph Haas</author>
|
||||||
|
@ -38,7 +38,7 @@ class ContactModule extends Module
|
|||||||
*/
|
*/
|
||||||
public function __construct($id, $data)
|
public function __construct($id, $data)
|
||||||
{
|
{
|
||||||
parent::Module($id, $data);
|
parent::__construct($id, $data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -33,9 +33,7 @@ class Plugincontactimporter extends Plugin
|
|||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
*/
|
*/
|
||||||
function Plugincontactimporter()
|
function __construct() {}
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function initializes the Plugin and registers all hooks
|
* Function initializes the Plugin and registers all hooks
|
||||||
|
Loading…
Reference in New Issue
Block a user