1# dokuwikiremotelistnamespace
2
3Example usage:
4
5    $depth = 1;
6    $wikiUrl = "https://wiki.example.org";
7    $wikiClient = XML_RPC2_Client::create($wikiUrl."/lib/exe/xmlrpc.php");
8    $method="plugin.remotelistnamespace.listNamespace";
9    $result = $wikiClient->$method($wiki, [ "depth" => $depth ]);
10