openlayers_convert_form_to_map

openlayers/openlayers.module, line 316

Versions
6
openlayers_convert_form_to_map($values = array())

OpenLayers Form to Map

Converts Form submission to map array. This is wrapper for a function in another file. This keeps the form from being parsed unnecesarily

Parameters

$values Array of values to convert

Return value

Array of map

Related topics

▾ 4 functions call openlayers_convert_form_to_map()

openlayers_admin_default_settings_submit in openlayers/includes/openlayers.defaults.inc
Form submit for openlayers_admin_default_settings form
openlayers_admin_default_settings_submit in openlayers/includes/openlayers.defaults.inc
Form submit for openlayers_admin_default_settings form
openlayers_cck_widget in openlayers/modules/openlayers_cck/openlayers_cck.module
Implementation of hook_widget().
openlayers_cck_widget in openlayers/modules/openlayers_cck/openlayers_cck.module
Implementation of hook_widget().

Code

<?php
function openlayers_convert_form_to_map($values = array()) {
  module_load_include('inc', 'openlayers', '/includes/openlayers.form');
  return _openlayers_convert_form_to_map($values);
}
?>