summaryrefslogtreecommitdiffstats
path: root/trunk/etherpad/src/plugins/kafoo/main.js
blob: f64557680c0f4bcfc9c62c4bb3e7563dd49e3b8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import("etherpad.log");

function init() {
 this.hooks = [];
 this.description = 'KaBar plugin';
 this.install = install;
 this.uninstall = uninstall;
}

function install() {
 log.info("Installing testplugin");
}

function uninstall() {
 log.info("Uninstalling testplugin");
}