You are here

function theme_gmap_location_user_html in GMap Module 5

File

./gmap_location.module, line 872
GMap Location module is a module to add some gmap funcationality based on location.modules information.

Code

function theme_gmap_location_user_html($account) {
  $returntxt = theme('user_picture', $account);
  $returntxt .= theme('username', $account);
  return $returntxt;
}