function theme_gmap_location_infowindow_user in GMap Module 7.2
Same name and namespace in other branches
- 6.2 gmap_location.module \theme_gmap_location_infowindow_user()
- 6 gmap_location.module \theme_gmap_location_infowindow_user()
- 7 gmap_location.module \theme_gmap_location_infowindow_user()
Default theme for user infowindows.
File
- ./
gmap_location.module, line 924 - GMap Location module is a module to add some gmap funcationality based on location.modules information.
Code
function theme_gmap_location_infowindow_user(&$vars) {
$account = $vars['account'];
$returntxt = theme('user_picture', array(
'account' => $account,
));
$returntxt .= theme('username', array(
'account' => $account,
));
return $returntxt;
}