remove old readme
[atutor.git] / docs / themes / default / social / friend_list.tmpl.php
1 <div style="float:right;width:100%;">
2 <?php require('notifications.tmpl.php'); ?>
3 </div>
4 <div style="float:right;min-width:100%;">
5         <div class="headingbox">
6         <h3><a href="<?php echo AT_SOCIAL_BASENAME; ?>connections.php"><?php echo _AT('connections'); ?></a></h3></div>
7         <div class="contentbox">
8         <?php
9         /**
10          * Loop through all the friends and print out a list.  
11          */
12         if (!empty($this->friends)): ?>
13                 <?php foreach ($this->friends as $id=>$m_obj): 
14                         if (is_array($m_obj) && $m_obj['added']!=1){
15                                 //skip over members that are not "my" friends
16                                 continue;
17                         } ?>
18                         <div style="width:100%;">
19                                 <!-- don't want delete on the front page
20                                 <div style="float:right;">
21                                         <a style="vertical-align:top;" href="<?php echo url_rewrite('mods/social/index.php');?>?remove=yes<?php echo SEP;?>id=<?php echo $id;?>"><img src="<?php echo $_base_href; ?>mods/social/images/b_drop.png" alt="<?php echo _AT('delete'); ?>" title="<?php echo _AT('delete'); ?>" border="0"/></a>
22                                 </div>
23                                 -->
24                                 <div style="width:110px; float:left; padding-bottom:0.2em;">
25                                         <?php echo printSocialProfileImg($id); ?><br />
26                                         <?php echo printSocialName($id); ?>
27                                 </div>
28                         </div>
29                 <?php endforeach; ?>
30                 <div style="clear:both;"><a href="<?php echo AT_SOCIAL_BASENAME; ?>connections.php"><?php echo _AT('show_all');?></a></div>
31         <?php else: ?>
32         <?php echo _AT('no_friends'); ?>
33         <?php endif; ?>
34         </div>
35 </div>