From 22356533a0529197d8a4c383307b566f94ed6fc4 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 12 Jan 2012 16:06:27 +0100 Subject: [PATCH] Added search. Thanks to icewind it was mostly copy/paste :-) --- apps/contacts/appinfo/app.php | 4 +++- apps/contacts/lib/search.php | 29 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 apps/contacts/lib/search.php diff --git a/apps/contacts/appinfo/app.php b/apps/contacts/appinfo/app.php index 524cc640bc9..1e9f8811722 100644 --- a/apps/contacts/appinfo/app.php +++ b/apps/contacts/appinfo/app.php @@ -1,4 +1,5 @@ 10, 'href' => OC_Helper::linkTo( 'contacts', 'index.php' ), 'icon' => OC_Helper::imagePath( 'settings', 'users.svg' ), - 'name' => 'Contacts' )); + 'name' => $l->t('Contacts') )); OC_APP::registerPersonal('contacts','settings'); +require_once('apps/contacts/lib/search.php'); \ No newline at end of file diff --git a/apps/contacts/lib/search.php b/apps/contacts/lib/search.php new file mode 100644 index 00000000000..97638821007 --- /dev/null +++ b/apps/contacts/lib/search.php @@ -0,0 +1,29 @@ + 0){ + $searchquery = explode(' ', $query); + }else{ + $searchquery[] = $query; + } + $l = new OC_l10n('contacts'); + foreach($addressbooks as $addressbook){ + $vcards = OC_Contacts_VCard::all($addressbook['id']); + foreach($vcards as $vcard){ + if(substr_count(strtolower($vcard['fullname']), strtolower($query)) > 0){ + $link = OC_Helper::linkTo('apps/contacts', 'index.php?id='.urlencode($vcard['id'])); + $results[]=new OC_Search_Result($vcard['fullname'],'', $link,$l->t('Contact'));//$name,$text,$link,$type + } + } + } + return $results; + } +} +new OC_Search_Provider_Contacts(); -- 2.39.5