function geolocation_theme in Geolocation Field 6
Same name and namespace in other branches
- 8.3 geolocation.module \geolocation_theme()
- 8 geolocation.module \geolocation_theme()
- 8.2 geolocation.module \geolocation_theme()
- 7 geolocation.module \geolocation_theme()
Implementation of hook_theme().
File
- ./
geolocation.module, line 190
Code
function geolocation_theme() {
return array(
// Themes for the formatters.
'geolocation_formatter_default' => array(
'arguments' => array(
'element' => NULL,
),
),
'geolocation_formatter_latitude' => array(
'arguments' => array(
'element' => NULL,
),
),
'geolocation_formatter_longitude' => array(
'arguments' => array(
'element' => NULL,
),
),
);
}