summaryrefslogtreecommitdiffstats
path: root/apps/admin/modules/address/templates/_destination.php
blob: f01676c4148e95d25c323aaef859d8a7bb2afd7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php use_helper('I18N','Javascript'); ?>
<?php $list = Address::getDestinationAsArray($address->getDestination());
	if($address->getSaveInMailbox())
		$list = array_merge(array($address->getMailbox()->getName()), $list);
?>
<div class="slidelist">
<?php if(count($list) > sfConfig::get('app_address_dest_collapse_count')): ?>

<?php echo link_to_function(__("Multiple (%1% entries)", array('%1%' => count($list))), visual_effect(
'toggle_slide', 'addresslist_'.$address->getId())) ?>
<div id="addresslist_<?php echo $address->getId() ?>" style="display:none">
<?php endif; ?>

<ul>
<?php foreach($list as $destination): ?>
<li><?php echo ($destination==$address->getMailbox()->getName()? __("Mailbox"): $destination) ?></li>
<?php endforeach; ?>
</ul>

<?php if(count($list) > 1): ?>
</div>
<?php endif; ?>
</div>