openlayers/openlayers.module, line 298
- Versions
- 6
openlayers_map_form_validate($map_form = array())
OpenLayers Form Validate Wrapper
Validate the form array to customize OpenLayers Maps. This is wrapper for a function in another file. This keeps the form from being parsed unnecesarily
Parameters
$form Array of of map form
Related topics
Code
<?php
function openlayers_map_form_validate($map_form = array()) {
module_load_include('inc', 'openlayers', '/includes/openlayers.form');
return _openlayers_map_form_validate($map_form);
}
?> 