You are here

function geofield_theme in Geofield 8

Same name and namespace in other branches
  1. 7.2 geofield.elements.inc \geofield_theme()

Implements hook_theme().

File

./geofield.module, line 96
Contains the geofield.module.

Code

function geofield_theme() {
  return [
    'geofield_dms' => [
      'variables' => [
        'components' => [],
      ],
    ],
    'geofield_latlon' => [
      'variables' => [
        'lat' => 0,
        'lon' => 0,
      ],
    ],
  ];
}