2011-12-11 15:26:00 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2011 Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
function contacts_namesort($a,$b){
|
2011-12-16 16:42:07 +00:00
|
|
|
return strcasecmp($a['fullname'],$b['fullname']);
|
2011-12-11 15:26:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
require_once('../../../lib/base.php');
|
2011-12-16 16:42:07 +00:00
|
|
|
OC_JSON::checkLoggedIn();
|
2011-12-11 15:26:00 +00:00
|
|
|
OC_JSON::checkAppEnabled('contacts');
|
|
|
|
|
2011-12-16 16:42:07 +00:00
|
|
|
$addressbooks = OC_Contacts_Addressbook::active(OC_User::getUser());
|
2011-12-11 15:26:00 +00:00
|
|
|
$contacts = array();
|
|
|
|
foreach( $addressbooks as $addressbook ){
|
|
|
|
$addressbookcontacts = OC_Contacts_VCard::all($addressbook['id']);
|
|
|
|
foreach( $addressbookcontacts as $contact ){
|
|
|
|
if(is_null($contact['fullname'])){
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$contacts[] = $contact;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
usort($contacts,'contacts_namesort');
|
|
|
|
$tmpl = new OC_TEMPLATE("contacts", "part.contacts");
|
|
|
|
$tmpl->assign('contacts', $contacts);
|
|
|
|
$page = $tmpl->fetchPage();
|
|
|
|
|
|
|
|
OC_JSON::success(array('data' => array( 'page' => $page )));
|
|
|
|
?>
|