function geolocation_theme in Geolocation Field 7
Same name and namespace in other branches
- 8.3 geolocation.module \geolocation_theme()
- 8 geolocation.module \geolocation_theme()
- 8.2 geolocation.module \geolocation_theme()
- 6 geolocation.module \geolocation_theme()
Implements hook_theme().
File
- ./
geolocation.module, line 227 - A geolocation field using the Field API.
Code
function geolocation_theme() {
return array(
'geolocation_latlng' => array(
'template' => 'geolocation_latlng',
'variables' => array(
'lat' => NULL,
'lng' => NULL,
),
),
);
}