You are here

function geolocation_theme in Geolocation Field 6

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. 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,
      ),
    ),
  );
}