You are here

function theme_gmap_location_infowindow_user in GMap Module 7.2

Same name and namespace in other branches
  1. 6.2 gmap_location.module \theme_gmap_location_infowindow_user()
  2. 6 gmap_location.module \theme_gmap_location_infowindow_user()
  3. 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;
}