gmap_geo/gmap_geo.module, line 12
- Versions
- 6
gmap_geo_elements()
Implementation of FAPI hook_elements().
Code
<?php
function gmap_geo_elements() {
return array(
'gmap_geo_picker' => array(
'#input' => TRUE,
'#columns' => array('lat', 'lon', 'wkt'),
'#delta' => 0,
'#process' => array('gmap_geo_picker_process'),
),
);
}
?> 