function openlayers_cck_elements in Openlayers 6.2
Same name and namespace in other branches
- 6 modules/openlayers_cck/openlayers_cck.module \openlayers_cck_elements()
Implementation of FAPI hook_elements().
File
- modules/
openlayers_cck/ openlayers_cck.module, line 326 - This file holds the main Drupal hook functions and private functions for the openlayers_cck module.
Code
function openlayers_cck_elements() {
return array(
'openlayers_wkt_widget' => array(
'#input' => TRUE,
'#columns' => array(
'openlayers_wkt',
),
'#delta' => 0,
'#process' => array(
'openlayers_cck_wkt_element_process',
),
),
);
}