summaryrefslogtreecommitdiffstats
path: root/apps/contacts/templates/part.contacts.php
blob: a6ac0f1096ad6ce370bc4c8d1e550a98a3be6e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php foreach( $_['contacts'] as $contact ):
	$display = trim($contact['fullname']);
	if(!$display) {
		$vcard = OC_Contacts_App::getContactVCard($contact['id']);
		if(!is_null($vcard)) {
			$struct = OC_Contacts_VCard::structureContact($vcard);
			$display = isset($struct['EMAIL'][0])?$struct['EMAIL'][0]['value']:'[UNKNOWN]';
		}
	}
?>
	<li book-id="<?php echo $contact['addressbookid']; ?>" data-id="<?php echo $contact['id']; ?>"><a href="index.php?id=<?php echo $contact['id']; ?>"><?php echo $display; ?></a></li>
<?php endforeach; ?>