issue13, added first try of external link to directly jump to a photo
[phpfspot.git] / rpc.php
diff --git a/rpc.php b/rpc.php
index b5d5d357f162aa50568d05a84d4bc550077f5cee..4bbf4d50b1cbd84314a4be38be0062048c00efb8 100644 (file)
--- 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,9 +66,11 @@ class PHPFSPOT_RPC {
             $fspot->delTag($_GET['id']);
             break;
 
-         case 'resettags':
+         case 'reset':
 
+            $fspot->resetTagSearch();
             $fspot->resetTags();
+            $fspot->resetPhotoView();
             break;
 
          case 'tagcondition':
@@ -99,6 +99,15 @@ class PHPFSPOT_RPC {
             $fspot->startTagSearch($_GET['for']);
             break;
 
+         case 'get_export':
+
+            $fspot->getExport($_GET['mode']);
+            break;
+
+         case 'get_photo_to_show':
+            $fspot->getCurrentPhoto();
+            break;
+
       }
 
    } // process_ajax_request();