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
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);
}
?> 