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
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