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 ef1be6a42989668cbf5883dd23ffcf3398afca0c..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':
@@ -80,6 +80,7 @@ class PHPFSPOT_RPC {
 
          case 'show_photo_index':
 
+            $_SESSION['begin_with'] = $_GET['begin_with'];
             $fspot->showPhotoIndex();
             break;
    
@@ -93,6 +94,20 @@ class PHPFSPOT_RPC {
             $fspot->showCredits();
             break;
 
+         case 'tag_search':
+
+            $fspot->startTagSearch($_GET['for']);
+            break;
+
+         case 'get_export':
+
+            $fspot->getExport($_GET['mode']);
+            break;
+
+         case 'get_photo_to_show':
+            $fspot->getCurrentPhoto();
+            break;
+
       }
 
    } // process_ajax_request();