You are here

function geofield_theme in Geofield 7.2

Same name and namespace in other branches
  1. 8 geofield.module \geofield_theme()

File

./geofield.elements.inc, line 329
Provides FormAPI element callbacks for geofield_latlon and geofield_proximity.

Code

function geofield_theme($existing, $type, $theme, $path) {
  return array(
    'geofield_latlon' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'render element' => 'element',
    ),
    'geofield_proximity' => array(
      'render element' => 'element',
    ),
  );
}