function theme_gmap_align in GMap Module 6.2
Same name and namespace in other branches
- 5 gmap.module \theme_gmap_align()
- 6 gmap.module \theme_gmap_align()
File
- ./
gmap.module, line 893 - GMap -- Routines to use the Google Maps API in Drupal.
Code
function theme_gmap_align($element) {
drupal_add_js(drupal_get_path('module', 'gmap') . '/js/align.js');
$element['#multiple'] = FALSE;
return theme('select', $element);
}