openlayers/openlayers.module, line 334
- Versions
- 6
openlayers_convert_map_to_form($map = array())
OpenLayers Convert Map to Form
Converst map array to form defualts. This is wrapper for a function in another file. This keeps the form from being parsed unnecesarily
Parameters
$map Array of map values to convert
Return value
Array of form items
Related topics
Code
<?php
function openlayers_convert_map_to_form($map = array()) {
module_load_include('inc', 'openlayers', '/includes/openlayers.form');
return _openlayers_convert_map_to_form($map);
}
?> 