]> git.mxchange.org Git - friendica.git/blobdiff - mod/allfriends.php
Merge pull request #1937 from annando/1510-follow-notifications
[friendica.git] / mod / allfriends.php
index f675b8e29ca1b4080a8f583e821ba6ac34954be1..1a45775fb2908fb715d87c2c162864231f6d0249 100644 (file)
@@ -20,18 +20,22 @@ function allfriends_content(&$a) {
                intval(local_user())
        );
 
-       $a->page['aside'] .= '<div class="vcard">' 
-               . '<div class="fn label">' . $c[0]['name'] . '</div>' 
-               . '<div id="profile-photo-wrapper">'
-               . '<a href="/contacts/' . $cid . '"><img class="photo" width="175" height="175" 
-               src="' . $c[0]['photo'] . '" alt="' . $c[0]['name'] . '" /></div>'
-               . '</div>';
-       
+       $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array(
+               '$name'  => $c[0]['name'],
+               '$photo' => $c[0]['photo'],
+               'url'    => z_root() . '/contacts/' . $cid
+       ));
+
+       if(! x($a->page,'aside'))
+               $a->page['aside'] = '';
+       $a->page['aside'] .= $vcard_widget;
 
        if(! count($c))
                return;
 
-       $o .= '<h2>' . sprintf( t('Friends of %s'), $c[0]['name']) . '</h2>';
+       $o .= replace_macros(get_markup_template("section_title.tpl"),array(
+               '$title' => sprintf( t('Friends of %s'), $c[0]['name'])
+       ));
 
 
        $r = all_friends(local_user(),$cid);