first implementation of "selected tag condition"
[phpfspot.git] / rpc.php
diff --git a/rpc.php b/rpc.php
index c81a7aed35aa1c52a3946433f24f2e20259b5ff7..ef1be6a42989668cbf5883dd23ffcf3398afca0c 100644 (file)
--- a/rpc.php
+++ b/rpc.php
@@ -45,9 +45,7 @@ class PHPFSPOT_RPC {
       switch($_GET['action']) {
          case 'showphoto':
 
-            $fspot->prepare_single_photo($_GET['id']);
-            $fspot->tmpl->show("body.tpl");
-
+            $fspot->showPhoto($_GET['id']);
             break;
    
          case 'show_available_tags':
@@ -75,10 +73,25 @@ class PHPFSPOT_RPC {
             $fspot->resetTags();
             break;
 
+         case 'tagcondition':
+
+            $fspot->setTagCondition($_GET['mode']);
+            break;
+
          case 'show_photo_index':
 
             $fspot->showPhotoIndex();
             break;
+   
+         case 'showbubbledetails':
+      
+            $fspot->showBubbleDetails($_GET['id'], $_GET['direction']);
+            break;
+
+         case 'showcredits':
+
+            $fspot->showCredits();
+            break;
 
       }