nextcloud/apps/contacts/templates/part.details.php

36 lines
1.5 KiB
PHP
Raw Normal View History

2011-08-09 20:00:14 +04:00
<?php if(array_key_exists('FN',$_['details'])): ?>
2011-08-15 01:48:43 +04:00
<table>
<?php if(isset($_['details']['PHOTO'])): // Emails first ?>
<tr class="contacts_details_property">
<td class="contacts_details_left">&nbsp;</td>
<td class="contacts_details_right">
<img src="photo.php?id=<?php echo $_['id']; ?>">
</td>
</tr>
<?php endif; ?>
<?php echo $this->inc('part.property', array('property' => $_['details']['FN'][0])); ?>
<?php if(isset($_['details']['BDAY'])): // Emails first ?>
<?php echo $this->inc('part.property', array('property' => $_['details']['BDAY'][0])); ?>
<?php endif; ?>
2011-08-09 20:00:14 +04:00
2011-08-15 01:48:43 +04:00
<?php if(isset($_['details']['ORG'])): // Emails first ?>
<?php echo $this->inc('part.property', array('property' => $_['details']['ORG'][0])); ?>
<?php endif; ?>
2011-08-09 20:00:14 +04:00
2011-08-15 01:48:43 +04:00
<?php foreach(array('EMAIL','TEL','ADR') as $type): ?>
<?php if(isset($_['details'][$type])): // Emails first ?>
<?php foreach($_['details'][$type] as $property): ?>
<?php echo $this->inc('part.property',array('property' => $property )); ?>
<?php endforeach; ?>
<?php endif; ?>
2011-08-09 15:53:58 +04:00
<?php endforeach; ?>
2011-08-15 01:48:43 +04:00
</table>
<?php endif; ?>
2011-08-09 20:00:14 +04:00
<div id="contacts_cardoptions">
<a id="contacts_deletecard"><img class="svg action" alt="<?php echo $l->t('Delete');?>" src="<?php echo image_path('', 'actions/delete.svg'); ?>" /></a>
<a id="contacts_addproperty"><img class="svg action" alt="<?php echo $l->t('Download');?>" src="<?php echo image_path('', 'actions/download.svg'); ?>" /></a>
</div>