diff --git a/mod/allfriends.php b/mod/allfriends.php
index f675b8e29c..bbdc5ef458 100644
--- a/mod/allfriends.php
+++ b/mod/allfriends.php
@@ -20,12 +20,11 @@ function allfriends_content(&$a) {
intval(local_user())
);
- $a->page['aside'] .= '
'
- . '
' . $c[0]['name'] . '
'
- . '
'
- . '
![' . $c[0]['name'] . '](' . $c[0]['photo'] . ')
'
- . '
';
+ $a->page['aside'] .= replace_macros(get_markup_template("vcard-widget.tpl"),array(
+ '$name' => $c[0]['name'],
+ '$photo' => $c[0]['photo'],
+ 'url' => $a->get_baseurl() . '/contacts/' . $cid
+ ));
if(! count($c))
diff --git a/mod/common.php b/mod/common.php
index 617b5b670a..574443f483 100644
--- a/mod/common.php
+++ b/mod/common.php
@@ -28,12 +28,11 @@ function common_content(&$a) {
);
}
- $a->page['aside'] .= ''
- . '
' . $c[0]['name'] . '
'
- . '
'
- . '
![' . $c[0]['name'] . '](' . $c[0]['photo'] . ')
'
- . '
';
+ $a->page['aside'] .= replace_macros(get_markup_template("vcard-widget.tpl"),array(
+ '$name' => $c[0]['name'],
+ '$photo' => $c[0]['photo'],
+ 'url' => $a->get_baseurl() . '/contacts/' . $cid
+ ));
if(! count($c))
diff --git a/mod/crepair.php b/mod/crepair.php
index 55231faf7d..7cc67d4c83 100644
--- a/mod/crepair.php
+++ b/mod/crepair.php
@@ -22,10 +22,11 @@ function crepair_init(&$a) {
if($contact_id) {
$a->data['contact'] = $r[0];
- $o .= '';
- $o .= '
' . $a->data['contact']['name'] . '
';
- $o .= '
';
- $o .= '
';
+ $tpl = get_markup_template("vcard-widget.tpl");
+ $o .= replace_macros($tpl, array(
+ '$name' => $a->data['contact']['name'],
+ '$photo' => $a->data['contact']['photo']
+ ));
$a->page['aside'] .= $o;
}
diff --git a/mod/photos.php b/mod/photos.php
index f8bba01b00..657f23236d 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -30,10 +30,14 @@ function photos_init(&$a) {
$a->data['user'] = $r[0];
- $o .= '';
- $o .= '
' . $a->data['user']['username'] . '
';
- $o .= '
';
- $o .= '
';
+ $profilephoto = $a->get_cached_avatar_image($a->get_baseurl() . '/photo/profile/' . $a->data['user']['uid'] . '.jpg');
+
+ $tpl = get_markup_template("vcard-widget.tpl");
+
+ $o .= replace_macros($tpl, array(
+ '$name' => $a->data['user']['username'],
+ '$photo' => $profilephoto
+ ));
$sql_extra = permissions_sql($a->data['user']['uid']);
diff --git a/mod/videos.php b/mod/videos.php
index 0f29e631bd..bc076e740a 100644
--- a/mod/videos.php
+++ b/mod/videos.php
@@ -28,10 +28,14 @@ function videos_init(&$a) {
$a->data['user'] = $r[0];
- $o .= '';
- $o .= '
' . $a->data['user']['username'] . '
';
- $o .= '
';
- $o .= '
';
+ $profilephoto = $a->get_cached_avatar_image($a->get_baseurl() . '/photo/profile/' . $a->data['user']['uid'] . '.jpg');
+
+ $tpl = get_markup_template("vcard-widget.tpl");
+
+ $o .= replace_macros($tpl, array(
+ '$name' => $a->data['user']['username'],
+ '$photo' => $profilephoto
+ ));
/*$sql_extra = permissions_sql($a->data['user']['uid']);
diff --git a/view/templates/vcard-widget.tpl b/view/templates/vcard-widget.tpl
index bc1a571bea..04e26607a1 100644
--- a/view/templates/vcard-widget.tpl
+++ b/view/templates/vcard-widget.tpl
@@ -1,6 +1,9 @@
-
-
+
+
{{$name}}
+ {{if $url}}
+
+ {{else}}
+
+ {{/if}}
+