From 4a0b6f6114f19cebd796b3b1c6e5253edc3267c3 Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Sat, 14 Jul 2007 12:06:42 +0000 Subject: issue24, first trial of date search is now included git-svn-id: file:///var/lib/svn/phpfspot/trunk@198 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- rpc.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'rpc.php') diff --git a/rpc.php b/rpc.php index 49d1930..891f395 100644 --- a/rpc.php +++ b/rpc.php @@ -70,6 +70,7 @@ class PHPFSPOT_RPC { $fspot->resetTagSearch(); $fspot->resetTags(); + $fspot->resetDateSearch(); $fspot->resetPhotoView(); break; @@ -91,9 +92,17 @@ class PHPFSPOT_RPC { case 'tag_search': + $fspot->resetDateSearch(); $fspot->startTagSearch($_GET['for']); break; + case 'date_search': + + $fspot->resetTagSearch(); + $fspot->resetTags(); + $fspot->startDateSearch($_GET['from'], $_GET['to']); + break; + case 'get_export': $fspot->getExport($_GET['mode']); @@ -103,6 +112,10 @@ class PHPFSPOT_RPC { $fspot->getCurrentPhoto(); break; + case 'get_calendar_matrix': + $fspot->get_calendar_matrix($_GET['year'], $_GET['month'], $_GET['day']); + break; + } } // process_ajax_request(); -- cgit v1.2.3-18-g5258