You are here

function location_views_elements in Location 5.3

Implementation of hook_elements().

File

contrib/location_views/location_views.module, line 1005
Views-enables the location module.

Code

function location_views_elements() {
  return array(
    'location_views_map' => array(
      '#input' => TRUE,
      '#tree' => TRUE,
      '#process' => array(
        '_location_views_expand_map' => array(),
      ),
    ),
  );
}