summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Eckelmann <deckelmann@gmail.com>2011-12-22 19:11:31 +0100
committerDominik Eckelmann <deckelmann@gmail.com>2011-12-22 19:11:31 +0100
commitd80d35e22221ff74c4374f34927a5097362e23d8 (patch)
tree0f60b2457c652a9741f33e5a157a5c2d4128b610
parent37fa8abdcb4ed0634f9c21c8e6f2d727d1ffd600 (diff)
downloadrpg-d80d35e22221ff74c4374f34927a5097362e23d8.tar.gz
rpg-d80d35e22221ff74c4374f34927a5097362e23d8.tar.bz2
added forgotten remote.php in lib/plugins
-rw-r--r--lib/plugins/remote.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/plugins/remote.php b/lib/plugins/remote.php
new file mode 100644
index 000000000..42c2f53c8
--- /dev/null
+++ b/lib/plugins/remote.php
@@ -0,0 +1,11 @@
+<?php
+
+abstract class DokuWiki_Remote_Plugin extends DokuWiki_Plugin {
+
+ /**
+ * @abstract
+ * @return array Information to all provided methods. {@see RemoteAPI}.
+ */
+ public abstract function _getMethods();
+
+}