xref: /dokuwiki/lib/plugins/remote.php (revision d80d35e22221ff74c4374f34927a5097362e23d8)
1<?php
2
3abstract class DokuWiki_Remote_Plugin extends DokuWiki_Plugin {
4
5    /**
6     * @abstract
7     * @return array Information to all provided methods. {@see RemoteAPI}.
8     */
9    public abstract function _getMethods();
10
11}
12