blob: 42c2f53c83419aef4751aaae1c5e0d632f6cd003 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
abstract class DokuWiki_Remote_Plugin extends DokuWiki_Plugin {
/**
* @abstract
* @return array Information to all provided methods. {@see RemoteAPI}.
*/
public abstract function _getMethods();
}
|