--- nfo/site/htdocs/netfraggle.php 2004/08/24 00:01:07 1.1 +++ nfo/site/htdocs/netfraggle.php 2004/08/30 02:33:26 1.4 @@ -0,0 +1,48 @@ + array("function" => "nfo_list_topics"), + "nfo.listContents" => array("function" => "nfo_list_contents"), + "nfo.getContent" => array("function" => "nfo_get_content"), + "nfo.listUsers" => array("function" => "nfo_list_users"), + )); + break; + case default: + break; +} + + +function nfo_list_topics() { +} +function nfo_list_contents() { +} +function nfo_get_content($ck) { + $content = cms_getcontent($ck); + return new XML_RPC_Response(new XML_RPC_Value("content", "array" | "struct")); +} +function nfo_list_users() { +} + +//------------------------------------------------------------------------------ + +?>