string extraction
This commit is contained in:
parent
b11963f9ac
commit
2d80c601df
|
@ -401,6 +401,7 @@ function profiles_content(&$a) {
|
||||||
$o .= replace_macros($template, array(
|
$o .= replace_macros($template, array(
|
||||||
'$photo' => $rr['thumb'],
|
'$photo' => $rr['thumb'],
|
||||||
'$id' => $rr['id'],
|
'$id' => $rr['id'],
|
||||||
|
'$alt' => t('Profile Image'),
|
||||||
'$profile_name' => $rr['profile-name']
|
'$profile_name' => $rr['profile-name']
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<div class="profile-listing" >
|
<div class="profile-listing" >
|
||||||
<div class="profile-listing-photo-wrapper" >
|
<div class="profile-listing-photo-wrapper" >
|
||||||
<a href="profiles/$id" class="profile-listing-edit-link"><img class="profile-listing-photo" id="profile-listing-photo-$id" src="$photo" alt="Profile Image" /></a>
|
<a href="profiles/$id" class="profile-listing-edit-link"><img class="profile-listing-photo" id="profile-listing-photo-$id" src="$photo" alt="$alt" /></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="profile-listing-photo-end"></div>
|
<div class="profile-listing-photo-end"></div>
|
||||||
<div class="profile-listing-name" id="profile-listing-name-$id"><a href="profiles/$id" class="profile-listing-edit-link" >$profile_name</a></div>
|
<div class="profile-listing-name" id="profile-listing-name-$id"><a href="profiles/$id" class="profile-listing-edit-link" >$profile_name</a></div>
|
||||||
|
|
Loading…
Reference in a new issue