mirror of
https://github.com/owncloudarchive/contacts.git
synced 2025-01-18 07:52:21 +01:00
Added search. Thanks to icewind it was mostly copy/paste :-)
This commit is contained in:
parent
1e9453ea37
commit
02180541a3
@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
$l=new OC_L10N('calendar');
|
||||||
|
|
||||||
OC::$CLASSPATH['OC_Contacts_App'] = 'apps/contacts/lib/app.php';
|
OC::$CLASSPATH['OC_Contacts_App'] = 'apps/contacts/lib/app.php';
|
||||||
OC::$CLASSPATH['OC_Contacts_Addressbook'] = 'apps/contacts/lib/addressbook.php';
|
OC::$CLASSPATH['OC_Contacts_Addressbook'] = 'apps/contacts/lib/addressbook.php';
|
||||||
@ -17,7 +18,8 @@ OC_App::addNavigationEntry( array(
|
|||||||
'order' => 10,
|
'order' => 10,
|
||||||
'href' => OC_Helper::linkTo( 'contacts', 'index.php' ),
|
'href' => OC_Helper::linkTo( 'contacts', 'index.php' ),
|
||||||
'icon' => OC_Helper::imagePath( 'settings', 'users.svg' ),
|
'icon' => OC_Helper::imagePath( 'settings', 'users.svg' ),
|
||||||
'name' => 'Contacts' ));
|
'name' => $l->t('Contacts') ));
|
||||||
|
|
||||||
|
|
||||||
OC_APP::registerPersonal('contacts','settings');
|
OC_APP::registerPersonal('contacts','settings');
|
||||||
|
require_once('apps/contacts/lib/search.php');
|
29
lib/search.php
Normal file
29
lib/search.php
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
<?php
|
||||||
|
class OC_Search_Provider_Contacts extends OC_Search_Provider{
|
||||||
|
function search($query){
|
||||||
|
$addressbooks = OC_Contacts_Addressbook::all(OC_User::getUser(), 1);
|
||||||
|
// if(count($calendars)==0 || !OC_App::isEnabled('contacts')){
|
||||||
|
// //return false;
|
||||||
|
// }
|
||||||
|
// NOTE: Does the following do anything
|
||||||
|
$results=array();
|
||||||
|
$searchquery=array();
|
||||||
|
if(substr_count($query, ' ') > 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();
|
Loading…
x
Reference in New Issue
Block a user