You are here

function geolocation_theme in Geolocation Field 7

Same name and namespace in other branches
  1. 8.3 geolocation.module \geolocation_theme()
  2. 8 geolocation.module \geolocation_theme()
  3. 8.2 geolocation.module \geolocation_theme()
  4. 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,
      ),
    ),
  );
}