You are here

function openlayers_element_info in Openlayers 7.3

Implements hook_element_info().

File

./openlayers.module, line 32
Openlayers module.

Code

function openlayers_element_info() {
  return array(
    'openlayers' => array(
      '#input' => FALSE,
      '#tree' => TRUE,
      '#process' => array(
        'openlayers_element_process_callback',
      ),
      '#pre_render' => array(
        'openlayers_element_prerender_callback',
      ),
      '#theme_wrappers' => array(
        'form_element',
      ),
    ),
  );
}