X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=rpc.php;h=704c921a63f9d9da033adbde9a25d9e9ab81e069;hp=b5d5d357f162aa50568d05a84d4bc550077f5cee;hb=e0ff14d4bcc1659675a8c5208d4151a04c2b0de9;hpb=e00eef0a999c366bbfb7912841bd845f659af649 diff --git a/rpc.php b/rpc.php index b5d5d35..704c921 100644 --- a/rpc.php +++ b/rpc.php @@ -27,14 +27,12 @@ class PHPFSPOT_RPC { public function __construct() { - session_start(); } // __construct() function process_ajax_request() { - require_once 'HTML/AJAX/Server.php'; $server = new HTML_AJAX_Server(); @@ -68,8 +66,9 @@ class PHPFSPOT_RPC { $fspot->delTag($_GET['id']); break; - case 'resettags': + case 'reset': + $fspot->resetTagSearch(); $fspot->resetTags(); break; @@ -99,6 +98,11 @@ class PHPFSPOT_RPC { $fspot->startTagSearch($_GET['for']); break; + case 'get_export': + + $fspot->getExport($_GET['mode']); + break; + } } // process_ajax_request();