Contacts: Add direct link to details of a contact

remotes/origin/stable
Bart Visscher 13 years ago
parent 36abf22a48
commit 1220edd4df
  1. 4
      apps/contacts/index.php
  2. 9
      apps/contacts/templates/index.php

@ -66,9 +66,9 @@ foreach( $openaddressbooks as $addressbook ){
}
usort($contacts,'contacts_namesort');
$details = array();
if( !is_null($id) || count($contacts)){
$details = array();
if( !is_null($id)/* || count($contacts)*/){
if(is_null($id)) $id = $contacts[0]['id'];
$vcard = OC_Contacts_App::getContactVCard($id);
$details = OC_Contacts_VCard::structureContact($vcard);

@ -15,5 +15,12 @@ OC_Util::addStyle('contacts','formtastic');
</ul>
</div>
<div id="rightcontent" class="rightcontent" data-id="<?php echo $_['id']; ?>">
<?php echo $this->inc("part.addcardform"); ?>
<?php
if ($_['id']){
echo $this->inc("part.details");
}
else{
echo $this->inc("part.addcardform");
}
?>
</div>

Loading…
Cancel
Save