1 <? if(0 < count($this->contacts)): ?>
2 <h1><?= $this->translate('Contacts'); ?></h1>
4 <? foreach($this->contacts as $contact): ?>
5 <li><a href="<?= $this->url(array('friend' => urlencode($contact->website)),
6 'Friends_EditFriend'); ?>"
7 title="<?= $this->translate('Edit contact'); ?>"
8 ><?= $contact->name; ?></a>
10 <a href="<?= $this->url(array('friend'
11 => urlencode($contact->website)),
12 'Friends_DeleteFriend'); ?>"
13 title="<?= $this->translate('Remove contact'); ?>"
14 ><?= $this->translate('Remove'); ?></a></sub>
19 if(0 < count($this->toApprove)): ?>
20 <h1><?= $this->translate('Pending approval'); ?></h1>
22 <? foreach($this->toApprove as $contact):?>
23 <li><a href="<?= $this->url(array('friend' => urlencode($contact->website)),
24 'Friends_AddFriend'); ?>"
25 title="<?= $this->translate('Add contact'); ?>"
26 ><?= $contact->name; ?></a>
28 <a href="<?= $this->url(array('friend'
29 => urlencode($contact->website)),
30 'Friends_DeleteFriend'); ?>"
31 title="<?= $this->translate('Reject this friend request'); ?>"
32 ><?= $this->translate('Reject'); ?></a></sub></li>
37 <a href="<?= $this->url(array(), 'Friends_AddFriend'); ?>"
38 title="<?= $this->translate('Add a contact'); ?>"
39 ><?= $this->translate('Add a contact'); ?></a>