openlayers_map_form_validate

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

▾ 2 functions call openlayers_map_form_validate()

openlayers_cck_widget_settings in openlayers/modules/openlayers_cck/openlayers_cck.module
Implementation of hook_widget_settings().
openlayers_cck_widget_settings in openlayers/modules/openlayers_cck/openlayers_cck.module
Implementation of hook_widget_settings().

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