Commit 760da342 authored by mku's avatar mku

ZP-109 #comment Add GetMailboxSearchResults to the search interface #time 15m

git-svn-id: https://z-push.org/svn/z-push/trunk@1312 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent 425b419f
...@@ -160,6 +160,17 @@ class BackendSearchLDAP implements ISearchProvider { ...@@ -160,6 +160,17 @@ class BackendSearchLDAP implements ISearchProvider {
return false; return false;
} }
/**
* Searches for the emails on the server
*
* @param ContentParameter $cpo
*
* @return array
*/
public function GetMailboxSearchResults($cpo) {
return array();
}
/** /**
* Disconnects from LDAP * Disconnects from LDAP
* *
......
...@@ -90,6 +90,18 @@ class SearchProvider implements ISearchProvider{ ...@@ -90,6 +90,18 @@ class SearchProvider implements ISearchProvider{
return array(); return array();
} }
/**
* Searches for the emails on the server
*
* @param ContentParameter $cpo
*
* @return array
*/
public function GetMailboxSearchResults($cpo){
return array();
}
/** /**
* Disconnects from the current search provider * Disconnects from the current search provider
* *
......
...@@ -76,6 +76,15 @@ interface ISearchProvider { ...@@ -76,6 +76,15 @@ interface ISearchProvider {
*/ */
public function GetGALSearchResults($searchquery, $searchrange); public function GetGALSearchResults($searchquery, $searchrange);
/**
* Searches for the emails on the server
*
* @param ContentParameter $cpo
*
* @return array
*/
public function GetMailboxSearchResults($cpo);
/** /**
* Disconnects from the current search provider * Disconnects from the current search provider
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment