diff options
author | Dominik Eckelmann <deckelmann@gmail.com> | 2011-12-22 19:11:31 +0100 |
---|---|---|
committer | Dominik Eckelmann <deckelmann@gmail.com> | 2011-12-22 19:11:31 +0100 |
commit | d80d35e22221ff74c4374f34927a5097362e23d8 (patch) | |
tree | 0f60b2457c652a9741f33e5a157a5c2d4128b610 /lib/plugins/remote.php | |
parent | 37fa8abdcb4ed0634f9c21c8e6f2d727d1ffd600 (diff) | |
download | rpg-d80d35e22221ff74c4374f34927a5097362e23d8.tar.gz rpg-d80d35e22221ff74c4374f34927a5097362e23d8.tar.bz2 |
added forgotten remote.php in lib/plugins
Diffstat (limited to 'lib/plugins/remote.php')
-rw-r--r-- | lib/plugins/remote.php | 11 |
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(); + +} |